Home
last modified time | relevance | path

Searched refs:OPCODE_BINARY (Results 1 – 25 of 145) sorted by relevance

123456

/dports/x11/xpra/xpra-4.3/xpra/net/websockets/
H A Dprotocol.py19 OPCODE_BINARY = 2 variable
26 OPCODE_BINARY : "binary frame",
64 header = encode_hybi_header(OPCODE_BINARY, payload_len, self.ws_mask)
112 if opcode not in (OPCODE_BINARY, OPCODE_TEXT):
118 if opcode==OPCODE_BINARY:
/dports/multimedia/tautulli/Tautulli-2.8.0/lib/websocket/
H A D_abnf.py109 OPCODE_BINARY = 0x2 variable in ABNF
115 OPCODES = (OPCODE_CONT, OPCODE_TEXT, OPCODE_BINARY, OPCODE_CLOSE,
122 OPCODE_BINARY: "binary",
398 frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY):
405 if frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY):
H A D_core.py317 return self.send(payload, ABNF.OPCODE_BINARY)
357 elif opcode == ABNF.OPCODE_TEXT or opcode == ABNF.OPCODE_BINARY:
405 elif frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY, ABNF.OPCODE_CONT):
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/websocket/
H A D_abnf.py115 OPCODE_BINARY = 0x2 variable in ABNF
121 OPCODES = (OPCODE_CONT, OPCODE_TEXT, OPCODE_BINARY, OPCODE_CLOSE,
128 OPCODE_BINARY: "binary",
422 frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY):
429 if frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY):
H A D_core.py284 return self.send(payload, ABNF.OPCODE_BINARY)
316 elif opcode == ABNF.OPCODE_TEXT or opcode == ABNF.OPCODE_BINARY:
349 elif frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY, ABNF.OPCODE_CONT):
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/websocket/
H A D_abnf.py110 OPCODE_BINARY = 0x2 variable in ABNF
116 OPCODES = (OPCODE_CONT, OPCODE_TEXT, OPCODE_BINARY, OPCODE_CLOSE,
123 OPCODE_BINARY: "binary",
411 frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY):
418 if frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY):
H A D_core.py317 return self.send(payload, ABNF.OPCODE_BINARY)
357 elif opcode == ABNF.OPCODE_TEXT or opcode == ABNF.OPCODE_BINARY:
405 elif frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY, ABNF.OPCODE_CONT):
/dports/www/py-websocket-client/websocket_client-0.58.0/websocket/
H A D_abnf.py118 OPCODE_BINARY = 0x2 variable in ABNF
124 OPCODES = (OPCODE_CONT, OPCODE_TEXT, OPCODE_BINARY, OPCODE_CLOSE,
131 OPCODE_BINARY: "binary",
433 frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY):
440 if frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY):
H A D_core.py316 return self.send(payload, ABNF.OPCODE_BINARY)
356 elif opcode == ABNF.OPCODE_TEXT or opcode == ABNF.OPCODE_BINARY:
401 elif frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY, ABNF.OPCODE_CONT):
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/telemetry/third_party/websocket-client/websocket/
H A D_abnf.py105 OPCODE_BINARY = 0x2 variable in ABNF
111 OPCODES = (OPCODE_CONT, OPCODE_TEXT, OPCODE_BINARY, OPCODE_CLOSE,
118 OPCODE_BINARY: "binary",
397 frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY):
404 if frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY):
H A D_core.py265 return self.send(payload, ABNF.OPCODE_BINARY)
296 elif opcode == ABNF.OPCODE_TEXT or opcode == ABNF.OPCODE_BINARY:
329 elif frame.opcode in (ABNF.OPCODE_TEXT, ABNF.OPCODE_BINARY, ABNF.OPCODE_CONT):
/dports/www/py-ws4py/ws4py-0.3.4/test/
H A Dtest_stream.py8 OPCODE_BINARY, OPCODE_CLOSE, OPCODE_PING, OPCODE_PONG
60 f = Frame(opcode=OPCODE_BINARY, body=os.urandom(2),
65 f = Frame(opcode=OPCODE_BINARY, body=os.urandom(7),
82 f = Frame(opcode=OPCODE_BINARY, body=os.urandom(7),
304 f = Frame(opcode=OPCODE_BINARY, body=msg, fin=1, masking_key=os.urandom(4)).build()
313 f = Frame(opcode=OPCODE_BINARY, body=msg, fin=0, masking_key=key).build()
324 self.assertEqual(s.message.opcode, OPCODE_BINARY)
330 self.assertEqual(s.message.opcode, OPCODE_BINARY)
365 self.assertEqual(m.opcode, OPCODE_BINARY)
/dports/www/py-gevent-websocket/gevent-websocket-0.10.1/geventwebsocket/
H A Dwebsocket.py32 OPCODE_BINARY = 0x02 variable in WebSocket
244 if f_opcode in (self.OPCODE_TEXT, self.OPCODE_BINARY):
322 elif opcode == self.OPCODE_BINARY:
341 opcode = self.OPCODE_BINARY if binary else self.OPCODE_TEXT
/dports/www/py-ws4py/ws4py-0.3.4/ws4py/
H A Dmessaging.py6 OPCODE_BINARY, OPCODE_CLOSE, OPCODE_PING, OPCODE_PONG
128 Message.__init__(self, OPCODE_BINARY, bytes, encoding=None)
/dports/lang/spidermonkey78/firefox-78.9.0/dom/websocket/tests/websocket_hybi/
H A Dfile_binary-frames_wsh.py13 header = stream.create_header(common.OPCODE_BINARY, len(message), 1, 0, 0, 0, 0)
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/base/test/websocket_hybi/
H A Dfile_binary-frames_wsh.py13 header = stream.create_header(common.OPCODE_BINARY, len(message), 1, 0, 0, 0, 0)
/dports/lang/spidermonkey60/firefox-60.9.0/dom/websocket/tests/websocket_hybi/
H A Dfile_binary-frames_wsh.py13 header = stream.create_header(common.OPCODE_BINARY, len(message), 1, 0, 0, 0, 0)
/dports/www/firefox-esr/firefox-91.8.0/dom/websocket/tests/websocket_hybi/
H A Dfile_binary-frames_wsh.py15 header = stream.create_header(common.OPCODE_BINARY, len(message), 1, 0, 0, 0, 0)
/dports/www/firefox/firefox-99.0/dom/websocket/tests/websocket_hybi/
H A Dfile_binary-frames_wsh.py15 header = stream.create_header(common.OPCODE_BINARY, len(message), 1, 0, 0, 0, 0)
/dports/mail/thunderbird/thunderbird-91.8.0/dom/websocket/tests/websocket_hybi/
H A Dfile_binary-frames_wsh.py15 header = stream.create_header(common.OPCODE_BINARY, len(message), 1, 0, 0, 0, 0)
/dports/www/firefox-esr/firefox-91.8.0/dom/websocket/tests/
H A Dfile_websocket_permessage_deflate_disabled_wsh.py16 if opcode == common.OPCODE_BINARY:
/dports/lang/spidermonkey78/firefox-78.9.0/dom/websocket/tests/
H A Dfile_websocket_permessage_deflate_disabled_wsh.py14 if (opcode == common.OPCODE_BINARY):
/dports/www/firefox/firefox-99.0/dom/websocket/tests/
H A Dfile_websocket_permessage_deflate_disabled_wsh.py16 if opcode == common.OPCODE_BINARY:
/dports/mail/thunderbird/thunderbird-91.8.0/dom/websocket/tests/
H A Dfile_websocket_permessage_deflate_disabled_wsh.py16 if opcode == common.OPCODE_BINARY:
/dports/lang/spidermonkey60/firefox-60.9.0/dom/websocket/tests/
H A Dfile_websocket_permessage_deflate_disabled_wsh.py14 if (opcode == common.OPCODE_BINARY):

123456