introduce an ECNCapablePacketConn interface to determine ECN support

This commit is contained in:
Marten Seemann 2020-09-15 14:36:03 +07:00
parent 272a2c88e6
commit 833027b065
5 changed files with 24 additions and 11 deletions

View file

@ -148,6 +148,8 @@ func listenAddr(addr string, tlsConf *tls.Config, config *Config, acceptEarly bo
}
// Listen listens for QUIC connections on a given net.PacketConn.
// If the PacketConn satisfies the ECNCapablePacketConn interface (as a net.UDPConn does), ECN support will be enabled.
// In this case, ReadMsgUDP will be used instead of ReadFrom to read packets.
// A single net.PacketConn only be used for a single call to Listen.
// The PacketConn can be used for simultaneous calls to Dial.
// QUIC connection IDs are used for demultiplexing the different connections.