introduce a OptimizeConn function to manually enable UDP optimizations

This commit is contained in:
Marten Seemann 2023-05-05 12:53:55 +03:00
parent 7ea6dc991f
commit 727f9e5654
4 changed files with 33 additions and 11 deletions

View file

@ -4,7 +4,7 @@ package quic
import "net"
func newConn(c net.PacketConn, supportsDF bool) (rawConn, error) {
func newConn(c net.PacketConn, supportsDF bool) (*basicConn, error) {
return &basicConn{PacketConn: c, supportsDF: supportsDF}, nil
}