summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/file_ws_backend_wsh.py
blob: fe74ae2065a895da1aa5f7e5018566dd51cca756 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)

    msgutil.close_connection(request)