mirror of
https://github.com/servo/servo.git
synced 2025-06-28 19:13:41 +01: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
|