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

from pywebsocket3 import msgutil


def web_socket_do_extra_handshake(request):
    pass # Always accept.


def web_socket_transfer_data(request):
    msgutil.send_message(request, request.ws_origin)