Functor Cf_sock_common.Create


module Create: 
functor (P : Cf_socket.P) -> T with module P = P
The functor used to create the socket module.
Parameters:
P : Cf_socket.P

module P: Cf_socket.P 
The module input for the Create(P: Cf_socket.P) functor
type t = (P.AF.tag_t, P.ST.tag_t) Cf_socket.t 
The specialized socket type.
type address_t = P.AF.address_t 
The specialized address type.
val create : unit -> t
Use create () to create a new socket. Raises Unix.Error if there is an error.
val createpair : unit -> t * t
Use createpair () to create a pair of new sockets that are connected to one another. Raises Unix.Error if there is an error.
class basic : ?sock:t -> unit -> object .. end
The base class for all sockets of this protocol.