2018-01-24 12:48:25 +01:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2018-02-05 21:17:03 +01:00
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
2018-01-24 12:48:25 +01:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
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-05-22 19:00:20 +02:00
|
|
|
type '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-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-05-22 19:00:20 +02:00
|
|
|
val encoding : 'conn_meta Data_encoding.t -> '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
|
|
|
|
(** We succesfully established a authentified connection. *)
|
|
|
|
| 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
|