Skip to content

Commit 11d850e

Browse files
authored
Merge pull request #119 from Jonney/patch-1
UDP multiple jumps not working
2 parents e409543 + 3fe4996 commit 11d850e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pproxy/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def auth(self):
268268
return self.users[0] if self.users else b''
269269
def udp_packet_unpack(self, data):
270270
data = self.cipher.datagram.decrypt(data) if self.cipher else data
271-
return self.rproto.udp_unpack(data)
271+
return self.jump.udp_packet_unpack(self.rproto.udp_unpack(data))
272272
def destination(self, host, port):
273273
return self.host_name, self.port
274274
def udp_prepare_connection(self, host, port, data):

0 commit comments

Comments
 (0)