82857dcb94
- `lib_node_p2p_base`: Base datatypes for the P2P layers - `lib_node_services`: RPC service definitions (depends on `node_p2p_base`) - `lib_node_http`: RPC http server - `lib_node_p2p`: the P2P workers
28 lines
1.1 KiB
OCaml
28 lines
1.1 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2017. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
open P2p_types
|
|
|
|
(** Welcome worker. Accept incoming connections and add them to its
|
|
connection pool. *)
|
|
|
|
type t
|
|
(** Type of a welcome worker, parametrized like a
|
|
[P2p_connection_pool.pool]. *)
|
|
|
|
val run:
|
|
backlog:int ->
|
|
('msg, 'meta) P2p_connection_pool.t ->
|
|
?addr:addr -> port -> t Lwt.t
|
|
(** [run ~backlog ~addr pool port] returns a running welcome worker
|
|
feeding [pool] listening at [(addr, port)]. [backlog] is the
|
|
argument passed to [Lwt_unix.accept]. *)
|
|
|
|
val shutdown: t -> unit Lwt.t
|