package git-net

  1. Overview
  2. Docs
A Mirage_kv implementation using git

Install

dune-project
 Dependency

Authors

Maintainers

Sources

git-kv-0.2.1.tbz
sha256=dc8669aa66f44f8423ced576911ec6bce1943565a99c1a6c6aa67e19db428a90
sha512=0ed3ccb5f352da278d247c11551c6eedcf29897f090a11684005c44d8e4f6a93bfc2fe78e3236a1c5f9e174d12c03bd8d0ace1a8e91ab03c26ba263df10a8442

doc/git-net.unix/Git_net_unix/TCP/index.html

Module Git_net_unix.TCPSource

Sourcetype flow = Lwt_unix.file_descr
Sourcetype error = [
  1. | `Refused
  2. | `Timeout
  3. | `Error of Unix.error * string * string
]
Sourcetype write_error = [
  1. | `Refused
  2. | `Timeout
  3. | `Closed
  4. | `Error of Unix.error * string * string
]
Sourceval pp_error : Format.formatter -> [< `Error of Unix.error * string * string | `Refused | `Timeout ] -> unit
Sourceval pp_write_error : Format.formatter -> [< `Closed | `Error of Unix.error * string * string | `Refused | `Timeout ] -> unit
Sourceval read : Lwt_unix.file_descr -> ([> `Data of Cstruct.t | `Eof ], [> `Error of Unix.error * string * string ]) result Lwt.t
Sourceval write : Lwt_unix.file_descr -> Cstruct.t -> (unit, [> `Error of Unix.error * string * string ]) result Lwt.t
Sourceval writev : Lwt_unix.file_descr -> Cstruct.t list -> (unit, [> `Error of Unix.error * string * string ]) Lwt_result.t
Sourceval close : Lwt_unix.file_descr -> unit Lwt.t
Sourceval shutdown : Lwt_unix.file_descr -> [< `read | `read_write | `write ] -> unit Lwt.t
Sourcetype endpoint = Lwt_unix.sockaddr
Sourceval connect : Lwt_unix.sockaddr -> (Lwt_unix.file_descr, [> `Error of Unix.error * string * string ]) result Lwt.t
Sourcetype listener = {
  1. process : flow -> unit Lwt.t;
  2. keepalive : Tcpip.Tcp.Keepalive.t option;
}
Sourcetype t = |
Sourcetype ipaddr = Ipaddr.t
Sourceval disconnect : 'a -> 'b
Sourceval dst : 'a -> 'b
Sourceval src : 'a -> 'b
Sourceval write_nodelay : 'a -> 'b -> 'c
Sourceval writev_nodelay : 'a -> 'b -> 'c
Sourceval create_connection : ?keepalive:'a -> 'b -> 'c -> 'd
Sourceval input : 'a -> src:'b -> dst:'c -> 'd -> 'e
Sourceval listen : 'a -> 'b
Sourceval unlisten : 'a -> 'b