mirror of
https://github.com/servo/servo.git
synced 2025-10-16 00:10:23 +01:00
10 lines
203 B
Python
Executable file
10 lines
203 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
from mod_pywebsocket import msgutil
|
|
|
|
def web_socket_do_extra_handshake(request):
|
|
request.connection.write(b"FOO BAR BAZ\r\n\r\n")
|
|
|
|
|
|
def web_socket_transfer_data(request):
|
|
pass
|