rename the connection to rawConn

This commit is contained in:
Marten Seemann 2022-03-27 10:13:02 +01:00
parent 3126062aa7
commit d7ad1b6b9b
7 changed files with 20 additions and 20 deletions

View file

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