https://github.com/web-platform-tests/wpt
Raw File
Tip revision: be315b1de5c832b49d353768e0b2a268658714b9 authored by Chris Rebert on 09 October 2015, 01:08:52 UTC
Stop using designMode and execCommand for dirtying in HTML form constraint tests
Tip revision: be315b1
protocol_wsh.py
#!/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
back to top