Add headroom interface

This commit is contained in:
世界 2022-07-30 17:34:28 +08:00
parent 91d2780bfc
commit a91eacdd01
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
8 changed files with 65 additions and 3 deletions

View file

@ -325,6 +325,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.saltLength + M.MaxSocksaddrLength
}
func (c *clientPacketConn) Upstream() any {
return c.Conn
}