summaryrefslogtreecommitdiffstats
path: root/dom/websocket/tests/file_websocket_bigBlob_wsh.py
blob: 5ccc85f3a0440efbb4e3cff255dbdd161478bc01 (plain)
1
2
3
4
5
6
7
8
9
10
11
from mod_pywebsocket import msgutil


def web_socket_do_extra_handshake(request):
    pass


def web_socket_transfer_data(request):
    while True:
        line = msgutil.receive_message(request)
        msgutil.send_message(request, line, True, True)