package tezos-dal-node-lib

  1. Overview
  2. Docs
Tezos: `tezos-dal-node` library

Install

Dune Dependency

Authors

Maintainers

Sources

tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65

doc/tezos-dal-node-lib.gossipsub/Tezos_dal_node_lib_gossipsub/Transport_layer_interface/index.html

Module Tezos_dal_node_lib_gossipsub.Transport_layer_interfaceSource

This module defines the data structures used to instantiate the Octez P2P library. More exactly, it exposes:

  • the types p2p_message, peer_metadata and connection_metadata, used to instantiate type variables of P2p.t;
  • the values peer_metadata_cfg of type P2p_params.peer_meta_config, conn_metadata_cfg of type P2p_params.conn_meta_config and message_cfg of type P2p_params.message_config that are used when calling P2p.create.

Peers exchanged via PX. point represents the (address, port) pair of the exchanged peer, while peer represents the cryptographic identity of the peer.

Sourcetype p2p_message =
  1. | Graft of {
    1. topic : Types.Topic.t;
    }
  2. | Prune of {
    1. topic : Types.Topic.t;
    2. px : px_peer Tezos_base.TzPervasives.Seq.t;
    3. backoff : Types.Span.t;
    }
  3. | IHave of {
    1. topic : Types.Topic.t;
    2. message_ids : Types.Message_id.t list;
    }
  4. | IWant of {
    1. message_ids : Types.Message_id.t list;
    }
  5. | Subscribe of {
    1. topic : Types.Topic.t;
    }
  6. | Unsubscribe of {
    1. topic : Types.Topic.t;
    }
  7. | Message_with_header of {
    1. message : Types.Message.t;
    2. topic : Types.Topic.t;
    3. message_id : Types.Message_id.t;
    }

Without piggybacking, p2p_message is almost identical to Gs_interface.p2p_message, except that for the Prune case, P2p_peer.Id.t elements in px are augmented by their P2p_point.Id.t counterpart.

Sourceval p2p_message_encoding : p2p_message Tezos_base.TzPervasives.Data_encoding.t
Sourceval pp_p2p_message : Format.formatter -> p2p_message -> unit
Sourceval message_config : network_name:string -> p2p_message Tezos_base.TzPervasives.P2p_params.message_config

A P2P message config is parameterized by the network's name.

Sourceval version : network_name:string -> Tezos_base.TzPervasives.Network_version.t
OCaml

Innovation. Community. Security.