diff --git a/proxy/socks/udp.go b/proxy/socks/udp.go
index a95d7201..9d912ea1 100644
--- a/proxy/socks/udp.go
+++ b/proxy/socks/udp.go
@@ -58,7 +58,7 @@ func (server *SocksServer) AcceptPackets(conn *net.UDPConn) error {
 
 		udpPacket := v2net.NewPacket(request.Destination(), request.Data, false)
     log.Info("Send packet to %s with %d bytes", udpPacket.Destination().String(), len(request.Data))
-		go server.handlePacket(conn, udpPacket, addr, v2net.IPAddress(request.Address.IP(), request.Address.Port()))
+		go server.handlePacket(conn, udpPacket, addr, request.Address)
 	}
 }