Don't log clients that don't send any request
They just fill up the logs with confusing data.
This commit is contained in:
parent
abcf2cd4d4
commit
0a6e0c2d87
|
|
@ -520,14 +520,14 @@ class WebSockifyServer(object):
|
||||||
|
|
||||||
|
|
||||||
if not ready:
|
if not ready:
|
||||||
raise self.EClose("ignoring socket not ready")
|
raise self.EClose("")
|
||||||
# Peek, but do not read the data so that we have a opportunity
|
# Peek, but do not read the data so that we have a opportunity
|
||||||
# to SSL wrap the socket first
|
# to SSL wrap the socket first
|
||||||
handshake = sock.recv(1024, socket.MSG_PEEK)
|
handshake = sock.recv(1024, socket.MSG_PEEK)
|
||||||
#self.msg("Handshake [%s]" % handshake)
|
#self.msg("Handshake [%s]" % handshake)
|
||||||
|
|
||||||
if not handshake:
|
if not handshake:
|
||||||
raise self.EClose("ignoring empty handshake")
|
raise self.EClose("")
|
||||||
|
|
||||||
elif handshake[0] in ("\x16", "\x80", 22, 128):
|
elif handshake[0] in ("\x16", "\x80", 22, 128):
|
||||||
# SSL wrap the connection
|
# SSL wrap the connection
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue