2018-06-29 14:08:08 +02:00
|
|
|
(*****************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Open Source License *)
|
|
|
|
(* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* Permission is hereby granted, free of charge, to any person obtaining a *)
|
|
|
|
(* copy of this software and associated documentation files (the "Software"),*)
|
|
|
|
(* to deal in the Software without restriction, including without limitation *)
|
|
|
|
(* the rights to use, copy, modify, merge, publish, distribute, sublicense, *)
|
|
|
|
(* and/or sell copies of the Software, and to permit persons to whom the *)
|
|
|
|
(* Software is furnished to do so, subject to the following conditions: *)
|
|
|
|
(* *)
|
|
|
|
(* The above copyright notice and this permission notice shall be included *)
|
|
|
|
(* in all copies or substantial portions of the Software. *)
|
|
|
|
(* *)
|
|
|
|
(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*)
|
|
|
|
(* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *)
|
|
|
|
(* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *)
|
|
|
|
(* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*)
|
|
|
|
(* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *)
|
|
|
|
(* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *)
|
|
|
|
(* DEALINGS IN THE SOFTWARE. *)
|
|
|
|
(* *)
|
|
|
|
(*****************************************************************************)
|
2018-01-24 12:48:25 +01:00
|
|
|
|
2018-02-08 10:51:00 +01:00
|
|
|
module Id = P2p_peer_id
|
2018-01-24 12:48:25 +01:00
|
|
|
|
|
|
|
module Map = Id.Map
|
|
|
|
module Set = Id.Set
|
|
|
|
module Table = Id.Table
|
|
|
|
|
2018-04-21 12:46:33 +02:00
|
|
|
module Filter : sig
|
|
|
|
|
|
|
|
type t =
|
|
|
|
| Accepted
|
|
|
|
| Running
|
|
|
|
| Disconnected
|
|
|
|
|
|
|
|
val rpc_arg : t RPC_arg.t
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2018-01-24 12:48:25 +01:00
|
|
|
module State : sig
|
|
|
|
|
|
|
|
type t =
|
|
|
|
| Accepted
|
|
|
|
| Running
|
|
|
|
| Disconnected
|
|
|
|
|
|
|
|
val pp_digram : Format.formatter -> t -> unit
|
|
|
|
val encoding : t Data_encoding.t
|
|
|
|
|
2018-04-21 12:46:33 +02:00
|
|
|
val filter : Filter.t list -> t -> bool
|
|
|
|
|
2018-01-24 12:48:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
module Info : sig
|
|
|
|
|
2018-07-25 18:00:22 +02:00
|
|
|
type ('peer_meta, 'conn_meta) t = {
|
2018-01-24 12:48:25 +01:00
|
|
|
score : float ;
|
|
|
|
trusted : bool ;
|
2018-05-22 19:00:20 +02:00
|
|
|
conn_metadata : 'conn_meta option ;
|
2018-07-25 18:00:22 +02:00
|
|
|
peer_metadata : 'peer_meta ;
|
2018-01-24 12:48:25 +01:00
|
|
|
state : State.t ;
|
|
|
|
id_point : P2p_connection.Id.t option ;
|
|
|
|
stat : P2p_stat.t ;
|
|
|
|
last_failed_connection : (P2p_connection.Id.t * Time.t) option ;
|
|
|
|
last_rejected_connection : (P2p_connection.Id.t * Time.t) option ;
|
|
|
|
last_established_connection : (P2p_connection.Id.t * Time.t) option ;
|
|
|
|
last_disconnection : (P2p_connection.Id.t * Time.t) option ;
|
|
|
|
last_seen : (P2p_connection.Id.t * Time.t) option ;
|
|
|
|
last_miss : (P2p_connection.Id.t * Time.t) option ;
|
|
|
|
}
|
|
|
|
|
2018-07-25 18:00:22 +02:00
|
|
|
val encoding : 'peer_meta Data_encoding.t ->
|
|
|
|
'conn_meta Data_encoding.t -> ('peer_meta, 'conn_meta) t Data_encoding.t
|
2018-01-24 12:48:25 +01:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Pool_event : sig
|
|
|
|
|
|
|
|
type kind =
|
|
|
|
| Accepting_request
|
|
|
|
(** We accepted a connection after authentifying the remote peer. *)
|
|
|
|
| Rejecting_request
|
|
|
|
(** We rejected a connection after authentifying the remote peer. *)
|
|
|
|
| Request_rejected
|
|
|
|
(** The remote peer rejected our connection. *)
|
|
|
|
| Connection_established
|
2018-12-01 06:57:40 +00:00
|
|
|
(** We successfully established a authentified connection. *)
|
2018-01-24 12:48:25 +01:00
|
|
|
| Disconnection
|
|
|
|
(** We decided to close the connection. *)
|
|
|
|
| External_disconnection
|
|
|
|
(** The connection was closed for external reason. *)
|
|
|
|
|
|
|
|
type t = {
|
|
|
|
kind : kind ;
|
|
|
|
timestamp : Time.t ;
|
|
|
|
point : P2p_connection.Id.t ;
|
|
|
|
}
|
|
|
|
|
|
|
|
val encoding : t Data_encoding.t
|
|
|
|
|
|
|
|
end
|