Module Cf_sock_dgram


module Cf_sock_dgram: sig .. end
Connection-oriented dgram 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_DGRAM, i.e. connectionless transport (w/ optional multicast). UDP 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_DGRAM socket type.
module Create: 
functor (P : Cf_socket.P with module ST = Cf_socket.SOCK_DGRAM) -> T with module P = P
The functor used to create the socket module.