mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
45 lines
1.3 KiB
Go
45 lines
1.3 KiB
Go
package socks
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/sagernet/sing/common"
|
|
"github.com/sagernet/sing/common/buf"
|
|
"github.com/sagernet/sing/common/bufio"
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
N "github.com/sagernet/sing/common/network"
|
|
)
|
|
|
|
var _ N.VectorisedPacketWriter = (*VectorisedAssociatePacketConn)(nil)
|
|
|
|
type VectorisedAssociatePacketConn struct {
|
|
AssociatePacketConn
|
|
N.VectorisedPacketWriter
|
|
}
|
|
|
|
func NewVectorisedAssociateConn(conn net.Conn, writer N.VectorisedWriter, remoteAddr M.Socksaddr, underlying net.Conn) *VectorisedAssociatePacketConn {
|
|
return &VectorisedAssociatePacketConn{
|
|
AssociatePacketConn{
|
|
AbstractConn: conn,
|
|
conn: bufio.NewExtendedConn(conn),
|
|
remoteAddr: remoteAddr,
|
|
underlying: underlying,
|
|
},
|
|
&bufio.UnbindVectorisedPacketWriter{VectorisedWriter: writer},
|
|
}
|
|
}
|
|
|
|
func (v *VectorisedAssociatePacketConn) WriteVectorisedPacket(buffers []*buf.Buffer, destination M.Socksaddr) error {
|
|
header := buf.NewSize(3 + M.SocksaddrSerializer.AddrPortLen(destination))
|
|
defer header.Release()
|
|
common.Must(header.WriteZeroN(3))
|
|
err := M.SocksaddrSerializer.WriteAddrPort(header, destination)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return v.VectorisedPacketWriter.WriteVectorisedPacket(append([]*buf.Buffer{header}, buffers...), destination)
|
|
}
|
|
|
|
func (c *VectorisedAssociatePacketConn) FrontHeadroom() int {
|
|
return 0
|
|
}
|