pub struct PeerInfo {Show 27 fields
pub id: u64,
pub addr: String,
pub addrbind: String,
pub addrlocal: String,
pub services: String,
pub relaytxes: bool,
pub lastsend: u64,
pub lastrecv: u64,
pub bytessent: u64,
pub bytesrecv: u64,
pub conntime: u64,
pub timeoffset: u64,
pub pingtime: u64,
pub minping: u64,
pub pingwait: u64,
pub version: u64,
pub subver: String,
pub inbound: bool,
pub addnode: bool,
pub startingheight: u64,
pub banscore: i64,
pub synced_headers: u64,
pub synced_blocks: u64,
pub inflight: Vec<u64>,
pub whitelisted: bool,
pub bytessent_per_msg: Json,
pub bytesrecv_per_msg: Json,
}Expand description
Models the result of “getpeerinfo”
Fields§
§id: u64Peer index
addr: StringThe IP address and port of the peer
addrbind: StringBind address of the connection to the peer
addrlocal: StringLocal address as reported by the peer
services: StringThe services offered
relaytxes: boolWhether peer has asked us to relay transactions to it
lastsend: u64The time in seconds since epoch (Jan 1 1970 GMT) of the last send
lastrecv: u64The time in seconds since epoch (Jan 1 1970 GMT) of the last receive
bytessent: u64The total bytes sent
bytesrecv: u64The total bytes received
conntime: u64The connection time in seconds since epoch (Jan 1 1970 GMT)
timeoffset: u64The time offset in seconds
pingtime: u64ping time (if available)
minping: u64minimum observed ping time (if any at all)
pingwait: u64ping wait (if non-zero)
version: u64The peer version, such as 70001
subver: StringThe string version
inbound: boolInbound (true) or Outbound (false)
addnode: boolWhether connection was due to addnode/-connect or if it was an
automatic/inbound connection
startingheight: u64The starting height (block) of the peer
banscore: i64The ban score
synced_headers: u64The last header we have in common with this peer
synced_blocks: u64The last block we have in common with this peer
inflight: Vec<u64>The heights of blocks we’re currently asking from this peer
whitelisted: boolWhether the peer is whitelisted
bytessent_per_msg: JsonThe total bytes sent aggregated by message type
bytesrecv_per_msg: JsonThe total bytes received aggregated by message type