mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
39 lines
927 B
Go
39 lines
927 B
Go
package uot
|
|
|
|
import (
|
|
"encoding/binary"
|
|
|
|
"github.com/sagernet/sing/common/buf"
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
N "github.com/sagernet/sing/common/network"
|
|
)
|
|
|
|
func (c *Conn) InitializeReadWaiter(options N.ReadWaitOptions) (needCopy bool) {
|
|
c.readWaitOptions = options
|
|
return false
|
|
}
|
|
|
|
func (c *Conn) WaitReadPacket() (buffer *buf.Buffer, destination M.Socksaddr, err error) {
|
|
if c.isConnect {
|
|
destination = c.destination
|
|
} else {
|
|
destination, err = AddrParser.ReadAddrPort(c.Conn)
|
|
if err != nil {
|
|
return
|
|
}
|
|
}
|
|
var length uint16
|
|
err = binary.Read(c.Conn, binary.BigEndian, &length)
|
|
if err != nil {
|
|
return
|
|
}
|
|
buffer = c.readWaitOptions.NewPacketBuffer()
|
|
_, err = buffer.ReadFullFrom(c.Conn, int(length))
|
|
if err != nil {
|
|
buffer.Release()
|
|
return nil, M.Socksaddr{}, E.Cause(err, "UoT read")
|
|
}
|
|
c.readWaitOptions.PostReturn(buffer)
|
|
return
|
|
}
|