mirror of
https://github.com/roytam1/UXP.git
synced 2026-07-20 22:18:32 +00:00
12 lines
266 B
Python
12 lines
266 B
Python
#!/usr/bin/python
|
|
|
|
from mod_pywebsocket import msgutil, util
|
|
|
|
def web_socket_do_extra_handshake(request):
|
|
pass
|
|
|
|
def web_socket_transfer_data(request):
|
|
while True:
|
|
msgutil.send_message(request, request.unparsed_uri.split('?')[1] or '')
|
|
return
|