remove a log info

This commit is contained in:
BreakWa11 2016-05-03 19:42:32 +08:00
parent b8feaacbbb
commit 6486f02fbe

View file

@ -427,7 +427,6 @@ class tls_ticket_auth(plain.plain):
self.handshake_status = 2 self.handshake_status = 2
ogn_buf = buf ogn_buf = buf
if not match_begin(buf, b'\x16\x03\x01'): if not match_begin(buf, b'\x16\x03\x01'):
logging.info("tls_auth wrong tls head")
return self.decode_error_return(ogn_buf) return self.decode_error_return(ogn_buf)
buf = buf[3:] buf = buf[3:]
if struct.unpack('>H', buf[:2])[0] != len(buf) - 2: if struct.unpack('>H', buf[:2])[0] != len(buf) - 2: