mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
introduce an ECNCapablePacketConn interface to determine ECN support
This commit is contained in:
parent
272a2c88e6
commit
833027b065
5 changed files with 24 additions and 11 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue