mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-24 21:33:09 +09:00
9 lines
201 B
Python
9 lines
201 B
Python
#!/usr/bin/python
|
|
|
|
from mod_pywebsocket import msgutil
|
|
|
|
def web_socket_do_extra_handshake(request):
|
|
request.connection.write("FOO BAR BAZ\r\n\r\n")
|
|
|
|
def web_socket_transfer_data(request):
|
|
pass
|