https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4e5f09f89e6f1976dd49a57ba46cd447c7e19a1e authored by Alex Moshchuk on 13 April 2018, 15:22:14 UTC
Reland: Use PostTask to schedule cross-process postMessage forwarding.
Tip revision: 4e5f09f
sleep_10_v13_wsh.py
#!/usr/bin/python

import sys, urllib, time
from mod_pywebsocket import common, msgutil, util

def web_socket_do_extra_handshake(request):
    request.connection.write('x')
    time.sleep(2)
    request.connection.write('x')
    time.sleep(2)
    request.connection.write('x')
    time.sleep(2)
    request.connection.write('x')
    time.sleep(2)
    request.connection.write('x')
    time.sleep(2)
    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)

back to top