Browse Source

fix "bytes" in "encode_head"

dev
BreakWa11 9 years ago
parent
commit
81b0597591
  1. 2
      shadowsocks/obfsplugin/http_simple.py

2
shadowsocks/obfsplugin/http_simple.py

@ -79,7 +79,7 @@ class http_simple(plain.plain):
def encode_head(self, buf):
ret = b''
for ch in buf:
ret += '%' + binascii.hexlify(chr(ch))
ret += b'%' + binascii.hexlify(chr(ch))
return ret
def client_encode(self, buf):

Loading…
Cancel
Save