Skip to content

Commit 3fe4996

Browse files
author
Jonney
authored
UDP multiple jumps not working
Forget to decrypt for next jump
1 parent e409543 commit 3fe4996

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)