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

@ -12,7 +12,7 @@ import (
"golang.org/x/sys/windows"
)
func newConn(c OOBCapablePacketConn) (connection, error) {
func newConn(c OOBCapablePacketConn) (rawConn, error) {
return &basicConn{PacketConn: c}, nil
}