Update headroom usage

This commit is contained in:
世界 2022-08-11 21:58:26 +08:00
parent a91eacdd01
commit 7e47fd1a99
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
8 changed files with 45 additions and 13 deletions

View file

@ -89,7 +89,7 @@ func (c *noneConn) WriteBuffer(buffer *buf.Buffer) error {
return common.Error(c.Conn.Write(buffer.Bytes()))
}
func (c *noneConn) Headroom() int {
func (c *noneConn) FrontHeadroom() int {
if !c.handshake {
return M.SocksaddrSerializer.AddrPortLen(c.destination)
}
@ -239,7 +239,7 @@ func (w *nonePacketWriter) Upstream() any {
return w.source
}
func (c *nonePacketWriter) Headroom() int {
func (w *nonePacketWriter) FrontHeadroom() int {
return M.MaxSocksaddrLength
}