blob: 39219134952272f34518a2458a0bb5c902c7cd4a (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/python
from mod_pywebsocket import msgutil
def web_socket_do_extra_handshake(request):
pass # Always accept.
def web_socket_transfer_data(request):
msgutil.send_message(request, request.unparsed_uri.split('?', 1)[1] or '')
|