Net.Sockaddr
Network addresses.
type stream = [
|
`Unix of string
`Tcp of Ipaddr.v4v6 * int
]
Socket addresses that we can build a Flow.two_way for i.e. stream-oriented protocols.
Flow.two_way
type datagram = [
`Udp of Ipaddr.v4v6 * int
Socket addresses that are message-oriented.
type t = [
stream
datagram
val pp : Stdlib.Format.formatter -> [< t ] -> unit