= 768" x-on:close-sidebar="sidebar=window.innerWidth >= 768 && true">
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
module V1 : sig ... end
module V2 : sig ... end
include module type of struct include V1.Conduit_async end
module Ssl = V1.Conduit_async.Ssl
type +'a io = 'a Async.Deferred.t
type ic = Async.Reader.t
type oc = Async.Writer.t
type addr = [
|
`OpenSSL of string * Ipaddr.t * int
|
`OpenSSL_with_config of string * Ipaddr.t * int * Ssl.config
|
`TCP of Ipaddr.t * int
|
`Unix_domain_socket of string
]
val sexp_of_addr : addr -> Sexplib0.Sexp.t
val addr_of_sexp : Sexplib0.Sexp.t -> addr
val __addr_of_sexp__ : Sexplib0.Sexp.t -> addr
val sexp_of_trust_chain : trust_chain -> Sexplib0.Sexp.t
val trust_chain_of_sexp : Sexplib0.Sexp.t -> trust_chain
val __trust_chain_of_sexp__ : Sexplib0.Sexp.t -> trust_chain
val sexp_of_openssl : openssl -> Sexplib0.Sexp.t
val openssl_of_sexp : Sexplib0.Sexp.t -> openssl
val __openssl_of_sexp__ : Sexplib0.Sexp.t -> openssl
val sexp_of_server : server -> Sexplib0.Sexp.t
val server_of_sexp : Sexplib0.Sexp.t -> server
val __server_of_sexp__ : Sexplib0.Sexp.t -> server
val serve :
?max_connections:int ->
?backlog:int ->
?buffer_age_limit:Async.Writer.buffer_age_limit ->
on_handler_error:
[ `Call of [< Async.Socket.Address.t ] as 'a -> exn -> unit
| `Ignore
| `Raise ] ->
server ->
('a, 'b) Async.Tcp.Where_to_listen.t ->
('a -> ic -> oc -> unit io) ->
('a, 'b) Async.Tcp.Server.t io