[][src]Struct solana_core::contact_info::ContactInfo

pub struct ContactInfo {
    pub id: Pubkey,
    pub gossip: SocketAddr,
    pub tvu: SocketAddr,
    pub tvu_forwards: SocketAddr,
    pub repair: SocketAddr,
    pub tpu: SocketAddr,
    pub tpu_forwards: SocketAddr,
    pub storage_addr: SocketAddr,
    pub rpc: SocketAddr,
    pub rpc_pubsub: SocketAddr,
    pub serve_repair: SocketAddr,
    pub wallclock: u64,
    pub shred_version: u16,
}

Structure representing a node on the network

Fields

id: Pubkeygossip: SocketAddr

gossip address

tvu: SocketAddr

address to connect to for replication

tvu_forwards: SocketAddr

address to forward shreds to

repair: SocketAddr

address to send repair responses to

tpu: SocketAddr

transactions address

tpu_forwards: SocketAddr

address to forward unprocessed transactions to

storage_addr: SocketAddr

storage data address

rpc: SocketAddr

address to which to send JSON-RPC requests

rpc_pubsub: SocketAddr

websocket for JSON-RPC push notifications

serve_repair: SocketAddr

address to send repair requests to

wallclock: u64

latest wallclock picked

shred_version: u16

node shred version

Methods

impl ContactInfo[src]

pub fn new_localhost(id: &Pubkey, now: u64) -> Self[src]

pub fn new_gossip_entry_point(gossip_addr: &SocketAddr) -> Self[src]

pub fn is_valid_address(addr: &SocketAddr) -> bool[src]

port must not be 0 ip must be specified and not mulitcast loopback ip is only allowed in tests

pub fn client_facing_addr(&self) -> (SocketAddr, SocketAddr)[src]

pub fn valid_client_facing_addr(&self) -> Option<(SocketAddr, SocketAddr)>[src]

Trait Implementations

impl Clone for ContactInfo[src]

impl Debug for ContactInfo[src]

impl Default for ContactInfo[src]

impl<'de> Deserialize<'de> for ContactInfo[src]

impl Eq for ContactInfo[src]

impl Ord for ContactInfo[src]

impl PartialEq<ContactInfo> for ContactInfo[src]

impl PartialOrd<ContactInfo> for ContactInfo[src]

impl Sanitize for ContactInfo[src]

impl Serialize for ContactInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> InitializableFromZeroed for T where
    T: Default

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,