xrpld
Loading...
Searching...
No Matches
Gossip.h
1#pragma once
2
3#include <xrpl/beast/net/IPEndpoint.h>
4
5#include <vector>
6
7namespace xrpl::Resource {
8
10struct Gossip
11{
12 explicit Gossip() = default;
13
15 struct Item
16 {
17 explicit Item() = default;
18
19 int balance{};
21 };
22
24};
25
26} // namespace xrpl::Resource
A version-independent IP address and port combination.
Definition IPEndpoint.h:17
beast::IP::Endpoint address
Definition Gossip.h:20
std::vector< Item > items
Definition Gossip.h:23