package octez-libs
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=aa2f5bc99cc4ca2217c52a1af2a2cdfd3b383208cb859ca2e79ca0903396ca1d
sha512=d68bb3eb615e3dcccc845fddfc9901c95b3c6dc8e105e39522ce97637b1308a7fa7aa1d271351d5933febd7476b2819e1694f31198f1f0919681f1f9cc97cb3a
doc/octez-libs.base/Tezos_base/P2p_point/Id/index.html
Module P2p_point.Id
Source
type addr_port_id = {
addr : string;
(*String representation of an address. This address can be an IPv4 or IPv6 or a domain.
*)port : int option;
(*If specified, a port number in 0-65535.
*)peer_id : P2p_peer_id.t option;
(*If specified, a
*)peer_id
. This field is given by the user to ensure the identity of the node behind the address.
}
parse_addr_port_id addr_port_id
splits the addr_port_id
into an addr
, a port
and an id
(as a b58 hash). Both port
and id
are optional. This function checks that the port
is between 0-65535. The character ':' separates the addr
and the port
while the character '#' separates the addr
or the port
from the id
. The function assumes that addr
can be either an Ipv6 address, an Ipv4 address or a domain. The address is formatted so that it can be given to Lwt_unix.getaddrinfo
. This means that square brackets around ipv6 addresses are removed.