mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
9 lines
201 B
Python
Executable file
9 lines
201 B
Python
Executable file
#!/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
|