Source code

Revision control

Copy as Markdown

Other Tools

#!/usr/bin/python
import sys, urllib, time
from mod_pywebsocket import msgutil
def web_socket_do_extra_handshake(request):
time.sleep(10)
return
def web_socket_transfer_data(request):
while True:
line = msgutil.receive_message(request)
if line == 'Goodbye':
return
request.ws_stream.send_message(line, binary=False)