udpnat2: New synced udp nat service

This commit is contained in:
世界 2024-10-21 19:24:36 +08:00
parent 0641c71805
commit 7ec09d6045
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
12 changed files with 307 additions and 40 deletions

View file

@ -37,7 +37,7 @@ func (c *LazyConn) ConnHandshakeSuccess(conn net.Conn) error {
Destination: M.SocksaddrFromNet(conn.LocalAddr()),
})
case socks5.Version:
return socks5.WriteResponse(conn, socks5.Response{
return socks5.WriteResponse(c.Conn, socks5.Response{
ReplyCode: socks5.ReplyCodeSuccess,
Bind: M.SocksaddrFromNet(conn.LocalAddr()),
})
@ -211,5 +211,5 @@ func (c *LazyAssociatePacketConn) WriterReplaceable() bool {
}
func (c *LazyAssociatePacketConn) Upstream() any {
return c.underlying
return &c.AssociatePacketConn
}