mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
9 lines
139 B
Go
9 lines
139 B
Go
// +build windows
|
|
|
|
package quic
|
|
|
|
import "net"
|
|
|
|
func newConn(c *net.UDPConn) (connection, error) {
|
|
return &basicConn{PacketConn: c}, nil
|
|
}
|