mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 04:47:40 +03:00
Fix socks5 packet conn
This commit is contained in:
parent
8fb1634c9a
commit
284cb5ce98
5 changed files with 59 additions and 71 deletions
|
@ -17,23 +17,13 @@ type VectorisedAssociatePacketConn struct {
|
|||
N.VectorisedPacketWriter
|
||||
}
|
||||
|
||||
func NewVectorisedAssociatePacketConn(conn net.PacketConn, writer N.VectorisedPacketWriter, remoteAddr M.Socksaddr, underlying net.Conn) *VectorisedAssociatePacketConn {
|
||||
return &VectorisedAssociatePacketConn{
|
||||
AssociatePacketConn{
|
||||
NetPacketConn: bufio.NewPacketConn(conn),
|
||||
remoteAddr: remoteAddr,
|
||||
underlying: underlying,
|
||||
},
|
||||
writer,
|
||||
}
|
||||
}
|
||||
|
||||
func NewVectorisedAssociateConn(conn net.Conn, writer N.VectorisedWriter, remoteAddr M.Socksaddr, underlying net.Conn) *VectorisedAssociatePacketConn {
|
||||
return &VectorisedAssociatePacketConn{
|
||||
AssociatePacketConn{
|
||||
NetPacketConn: bufio.NewUnbindPacketConn(conn),
|
||||
remoteAddr: remoteAddr,
|
||||
underlying: underlying,
|
||||
AbstractConn: conn,
|
||||
conn: bufio.NewExtendedConn(conn),
|
||||
remoteAddr: remoteAddr,
|
||||
underlying: underlying,
|
||||
},
|
||||
&bufio.UnbindVectorisedPacketWriter{VectorisedWriter: writer},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue