mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-26 09:18:37 +09:00
9 lines
201 B
Python
9 lines
201 B
Python
from mod_pywebsocket import msgutil
|
|
|
|
def web_socket_do_extra_handshake(request):
|
|
pass
|
|
|
|
def web_socket_transfer_data(request):
|
|
while not request.client_terminated:
|
|
msgutil.receive_message(request)
|
|
|