Module Node_addrs_and_ports

type t = {
external_ip : Core.Unix.Inet_addr.Blocking_sexp.t;
bind_ip : Core.Unix.Inet_addr.Blocking_sexp.t;(*

When peer is None, the peer_id will be auto-generated and this field replaced with Some after libp2p initialization.

*)
mutable peer : Network_peer.Peer.Stable.Latest.t option;
libp2p_port : int;
client_port : int;
}

Network information for speaking to this daemon.

val client_port : t -> int
val libp2p_port : t -> int
val set_peer : t -> Network_peer.Peer.Stable.Latest.t option -> unit
val bind_ip : t -> Core.Unix.Inet_addr.Blocking_sexp.t
val external_ip : t -> Core.Unix.Inet_addr.Blocking_sexp.t
module Fields : sig ... end
val t_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> t
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
module Display : sig ... end
val to_display : t -> Display.t
val of_display : Display.t -> t
val to_multiaddr : t -> string option
val to_multiaddr_exn : t -> string
val to_yojson : t -> Yojson.Safe.t
val to_peer_exn : t -> Network_peer.Peer.t