Module Netsockaddr

module Netsockaddr: sig .. end
Parsing of socket addresses

type socksymbol = [ `Inet of Unix.inet_addr * int
| `Inet_byname of string * int
| `Unix of string ]
Symbolic socket names:

Use Uq_resolver.sockaddr_of_socksymbol to convert to a Unix.sockaddr (and resolve names).
val socksymbol_of_string : string -> socksymbol
Parses designations of the forms: Raises Failure on parse error.
val string_of_socksymbol : socksymbol -> string
The reverse function