= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
package tcpip
-
icmpv4_socket
-
tcp_socket_options
-
tcpip
-
tcpip_icmpv4
-
tcpip_stack_direct
-
tcpip_stack_socket
-
tcpip_unix
-
tcpip_xen
-
tcpv4_socket
-
tcpv6_socket
-
udpv4_socket
-
udpv6_socket
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val pp_error :
Format.formatter ->
[< `Exn of exn | `Refused | `Timeout ] ->
unit
val pp_write_error :
Format.formatter ->
[< `Closed | `Exn of exn | `Refused | `Timeout ] ->
unit
val disconnect : 'a -> unit Lwt.t
val read :
Lwt_unix.file_descr ->
([> `Data of Cstruct.t | `Eof ], [> `Exn of exn ]) result Lwt.t
val write :
Lwt_unix.file_descr ->
Cstruct.t ->
(unit, [> `Closed | `Exn of exn ]) result Lwt.t
val writev :
Lwt_unix.file_descr ->
Cstruct.t list ->
(unit, [> `Closed | `Exn of exn ]) result Lwt.t
val write_nodelay :
Lwt_unix.file_descr ->
Cstruct.t ->
(unit, [> `Closed | `Exn of exn ]) result Lwt.t
val writev_nodelay :
Lwt_unix.file_descr ->
Cstruct.t list ->
(unit, [> `Closed | `Exn of exn ]) result Lwt.t
val close : Lwt_unix.file_descr -> unit Lwt.t
type listener = {
process : Lwt_unix.file_descr -> unit Lwt.t;
keepalive : Mirage_protocols.Keepalive.t option;
}
val input : 'a -> listeners:'b -> 'c Lwt.t