WebSocketServer QML Type
QML interface to QWebSocketServer. More...
Import Statement: | import QtWebSockets 1.15 |
Since: | Qt 5.3 |
Properties
- accept : bool
- errorString : QString
- host : QString
- listen : bool
- name : QString
- port : int
- url : QUrl
Signals
- clientConnected(WebSocket webSocket)
Detailed Description
Property Documentation
Set to true to accept incoming client connections when the server is listening. When set to false, incoming connections are rejected. By default, connections are accepted.
Set to true when the server should listen to client connections or false otherwise. When set to true, the server will listen on the specified url defined by host and port and, when accept is true, accepts incoming client connections. Otherwise the server is closed. By default, the server is not listening.
The port this server is listening on. The value must be in the range 0-65535.
By default, a port is chosen automatically.
Server url that client WebSockets can connect to. The url uses the ws:// scheme and includes the port the server listens to and the host address of the server.
Signal Documentation
clientConnected(WebSocket webSocket) |
This signal is emitted when a client connects to this server. webSocket is the newly created WebSocket.
Note: The corresponding handler is onClientConnected
.