mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
simplify connection handling when setting the receive buffer
This commit is contained in:
parent
1cd78f131f
commit
600502ab06
6 changed files with 38 additions and 54 deletions
|
@ -8,8 +8,6 @@ func newConn(c net.PacketConn) (rawConn, error) {
|
|||
return &basicConn{PacketConn: c}, nil
|
||||
}
|
||||
|
||||
func inspectReadBuffer(interface{}) (int, error) {
|
||||
return 0, nil
|
||||
}
|
||||
func inspectReadBuffer(any) (int, error) { return 0, nil }
|
||||
|
||||
func (i *packetInfo) OOB() []byte { return nil }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue