mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
We're allocating a lot of packetInfo structs during the lifetime of a connection. It's better to keep that struct as small as possible.
15 lines
285 B
Go
15 lines
285 B
Go
// +build !darwin,!linux,!freebsd,!windows
|
|
|
|
package quic
|
|
|
|
import "net"
|
|
|
|
func newConn(c net.PacketConn) (connection, error) {
|
|
return &basicConn{PacketConn: c}, nil
|
|
}
|
|
|
|
func inspectReadBuffer(interface{}) (int, error) {
|
|
return 0, nil
|
|
}
|
|
|
|
func (i *packetInfo) OOB() []byte { return nil }
|