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

from mod_pywebsocket import msgutil

def web_socket_do_extra_handshake(request):
    pass  # Always accept.

def web_socket_transfer_data(request):
    line = msgutil.receive_message(request)
    if line == "":
        msgutil.send_message(request, 'pass')
    else:
        msgutil.send_message(request, 'fail')