mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
10 lines
201 B
Python
10 lines
201 B
Python
from mod_pywebsocket import msgutil
|
|
|
|
def web_socket_do_extra_handshake(request):
|
|
pass
|
|
|
|
def web_socket_transfer_data(request):
|
|
while not request.client_terminated:
|
|
msgutil.receive_message(request)
|
|
|