mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-30 03:08:38 +09:00
11 lines
266 B
Python
11 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
|