1
0
Fork 0
firefox/devtools/shared/commands/resource/tests/websocket_backend_wsh.py
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
607 B
Python

from mod_pywebsocket import msgutil
def web_socket_do_extra_handshake(request):
pass
def web_socket_transfer_data(request):
while not request.client_terminated:
resp = msgutil.receive_message(request)
msgutil.send_message(request, resp)
def web_socket_passive_closing_handshake(request):
# If we use `pass` here, the `payload` of `frameReceived` which will be happened
# of communication of closing will be `\u0003è`. In order to make the `payload`
# to be empty string, return code and reason explicitly.
code = None
reason = None
return code, reason