Lines Matching refs:to
14 like SSL etc. The project is focused mainly on making it easy to run a
25 3. `pip install websocket-server` (might not be up-to-date)
32 You can get a feel of how to use the websocket server by running
36 Then just open `client.html` in your browser and you should be able to send and receive messages.
56 *`port`* - The port clients will need to connect to.
58 …ctions only from the current machine. If you wish to allow all network machines to connect, you ne…
60 *`loglevel`* - logging level to print. By default WARNING is used. You can use `logging.DEBUG` or `…
74 … a callback function that will be called for every new `client` connecting to us | function …
77 | `send_message()` | Sends a `message` to a specific `client`. The message is a simple s…
78 | `send_message_to_all()` | Sends a `message` to **all** connected clients. The message is a si…
85 | `set_fn_new_client()` | Called for every new `client` connecting to us | client, server …
90 …to the callback is the client that left, sent the message, etc. The server might not have any use …