From 5d8e0e8ddb5a6dc8e7525180d60d771b61be18aa Mon Sep 17 00:00:00 2001 From: Akkariiin Date: Sun, 24 Sep 2017 15:19:36 +0800 Subject: [PATCH] fix auth_chain_e --- shadowsocks/obfsplugin/auth_chain.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shadowsocks/obfsplugin/auth_chain.py b/shadowsocks/obfsplugin/auth_chain.py index 1413819..42abeea 100644 --- a/shadowsocks/obfsplugin/auth_chain.py +++ b/shadowsocks/obfsplugin/auth_chain.py @@ -850,7 +850,7 @@ class auth_chain_d(auth_chain_b): class auth_chain_e(auth_chain_d): def __init__(self, method): - super(auth_chain_d, self).__init__(method) + super(auth_chain_e, self).__init__(method) self.salt = b"auth_chain_e" self.no_compatible_method = 'auth_chain_e' @@ -869,7 +869,7 @@ class auth_chain_e(auth_chain_d): # when every connect create, generate size_list will different when every day or every custom time interval which set in the config class auth_chain_f(auth_chain_e): def __init__(self, method): - super(auth_chain_e, self).__init__(method) + super(auth_chain_f, self).__init__(method) self.salt = b"auth_chain_f" self.no_compatible_method = 'auth_chain_f'