summaryrefslogtreecommitdiffstats
path: root/dom/websocket/tests/websocket_hybi/file_binary-frames_wsh.py
blob: 16ace4d3a638e19481c14944b142cdce9e1bfbac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import six
from mod_pywebsocket import common, stream


def web_socket_do_extra_handshake(request):
    pass


def web_socket_transfer_data(request):
    messages_to_send = ["Hello, world!", "", all_distinct_bytes()]
    for message in messages_to_send:
        message = six.b(message)
        # FIXME: Should use better API to send binary messages when pywebsocket supports it.
        header = stream.create_header(common.OPCODE_BINARY, len(message), 1, 0, 0, 0, 0)
        request.connection.write(header + message)


def all_distinct_bytes():
    return "".join([chr(i) for i in range(256)])