Module Cf_sock_stream


module Cf_sock_stream: sig .. end
Connection-oriented stream transports with orderly release.

This module extends the basic sockets interfaces defined in Cf_socket and Cf_sock_common with support for sockets of type SOCK_STREAM, i.e. connection-oriented transports with orderly releases. TCP endpoints are sockets of this type.


module type T = sig .. end
The type of the module containing the extensions to the Cf_sock_common.T module type used for handling sockets of the SOCK_STREAM socket type.
module Create: 
functor (P : Cf_socket.P with module ST = Cf_socket.SOCK_STREAM) -> T with module P = P
The functor used to create the socket module.