mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-30 11:18:39 +09:00
10 lines
257 B
Python
10 lines
257 B
Python
from mod_pywebsocket import msgutil
|
|
|
|
def web_socket_do_extra_handshake(request):
|
|
pass
|
|
|
|
def web_socket_transfer_data(request):
|
|
resp = "Test"
|
|
if msgutil.receive_message(request) == "data":
|
|
resp = "Hello world!"
|
|
msgutil.send_message(request, resp)
|