From d2b6c34bdf1799494fe764017e934ee592cca089 Mon Sep 17 00:00:00 2001 From: BreakWa11 Date: Wed, 22 Jun 2016 01:32:35 +0800 Subject: [PATCH] accept older connection id --- shadowsocks/obfsplugin/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shadowsocks/obfsplugin/auth.py b/shadowsocks/obfsplugin/auth.py index 0f2ee35..482b13a 100644 --- a/shadowsocks/obfsplugin/auth.py +++ b/shadowsocks/obfsplugin/auth.py @@ -103,7 +103,7 @@ class client_queue(object): def re_enable(self, connection_id): self.enable = True self.alloc = {} - self.front = connection_id - 16 + self.front = connection_id - 64 self.back = connection_id self.alloc[connection_id] = 1