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

@ -109,6 +109,8 @@ func dialAddrContext(
}
// Dial establishes a new QUIC connection to a server using a 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.
// The same PacketConn can be used for multiple calls to Dial and Listen,
// QUIC connection IDs are used for demultiplexing the different connections.
// The host parameter is used for SNI.