blob: 94c7b9a18113cea20ab90cffeca07c5b7cab8959 [file] [log] [blame]
import struct
from mod_pywebsocket import msgutil
from mod_pywebsocket import stream
def web_socket_do_extra_handshake(request):
pass
def web_socket_transfer_data(request):
# Wait for a close frame sent from the client.
close_frame = request.ws_stream.receive_bytes(6)
msgutil.send_message(request, 'Client should ignore this message')
# Send only first two bytes of the received frame. The remaining four bytes are
# "masking key", which changes every time the test runs.
data = struct.pack('!H', 1000) + 'close_frame[:2]=%r' % close_frame[:2]
request.connection.write(stream.create_close_frame(data))
# Tell pywebsocket we have sent a close frame to the client, so it can close
# the connection.
request.server_terminated = True