1WEBSOCKET SERVER TRANSPORT 2========================== 3 4The WebSocket Server transport is WebSocket server that accepts connections from a WebSocket 5client. HCI packets are sent and received over the connection. 6 7## Moniker 8The moniker syntax for a WebSocket Server transport is: `ws-server:<host>:<port>`, 9where `<host>` may be the address of a local network interface, or `_`to accept connections on all local network interfaces. `<port>` is the TCP port number on which to accept connections. 10 11 12!!! example 13 `ws-server:_:9001` 14