Transport addresses
These utility definitions allow other schemas to discuss network transport addresses:
- A
Tcpaddress denotes a listening port on a particular host. - A
Unixaddress denotes a UNIX domain socket by its filesystem path. - A
WebSocketaddress contains aws://orwss://URL. - A
Stdioaddress denotes the standard input and output of a program.
Tcp = <tcp @host string @port int>.
Unix = <unix @path string>.
WebSocket = <ws @url string>.
Stdio = <stdio>.