summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/websockets/handlers/protocol_wsh.py
blob: 96a452584565c68d2651b2e2649d89175d02ea1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python

from mod_pywebsocket import msgutil, util

def web_socket_do_extra_handshake(request):
    request.ws_protocol = request.headers_in.get('Sec-WebSocket-Protocol')
#pass

def web_socket_transfer_data(request):
    while True:
        msgutil.send_message(request, request.ws_protocol)
        return