remove debugging

This commit is contained in:
Jakob Ketterl 2019-05-05 21:09:01 +02:00
parent a4313c3340
commit 1c2810ccb8
1 changed files with 0 additions and 1 deletions

View File

@ -55,7 +55,6 @@ class WebSocketConnection(object):
if (mask):
masking_key = self.handler.rfile.read(4)
data = self.handler.rfile.read(length)
print("opcode: {0}, length: {1}, mask: {2}".format(opcode, length, mask))
if (mask):
data = bytes([b ^ masking_key[index % 4] for (index, b) in enumerate(data)])
if (opcode == 1):