mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-03 20:07:40 +03:00
Add headroom interface
This commit is contained in:
parent
91d2780bfc
commit
a91eacdd01
8 changed files with 65 additions and 3 deletions
|
@ -310,6 +310,10 @@ func (c *clientPacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
|||
return len(p), nil
|
||||
}
|
||||
|
||||
func (c *clientPacketConn) Headroom() int {
|
||||
return c.keySaltLength + M.MaxSocksaddrLength
|
||||
}
|
||||
|
||||
func (c *clientPacketConn) Upstream() any {
|
||||
return c.Conn
|
||||
}
|
||||
|
|
|
@ -280,6 +280,10 @@ func (w *serverPacketWriter) WritePacket(buffer *buf.Buffer, destination M.Socks
|
|||
return w.source.WritePacket(buffer, M.SocksaddrFromNet(w.nat.LocalAddr()))
|
||||
}
|
||||
|
||||
func (w *serverPacketWriter) Headroom() int {
|
||||
return w.keySaltLength + M.MaxSocksaddrLength
|
||||
}
|
||||
|
||||
func (w *serverPacketWriter) Upstream() any {
|
||||
return w.source
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue