8 lines
166 B
Python
Executable file
8 lines
166 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
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
|