1TCP SERVER TRANSPORT 2==================== 3 4The TCP Client transport uses an incoming TCP connection to a host:port address. 5 6## Moniker 7The moniker syntax for a TCP server transport is: `tcp-server:<local-host>:<local-port>` 8where `<local-host>` may be the address of a local network interface, or `_` to accept 9connections on all local network interfaces. 10 11!!! example 12 `tcp-server:_:9001` 13 Waits for and accepts connections on port `9001` 14