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

from pywebsocket3 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')