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

import sys, urllib, time
from mod_pywebsocket import msgutil

def web_socket_do_extra_handshake(request):
    time.sleep(10)
    return

def web_socket_transfer_data(request):
    while True:
        line = msgutil.receive_message(request)
        if line == 'Goodbye':
            return
        request.ws_stream.send_message(line, binary=False)