Skip to content

QuantumGate::Local::Environment::AddressDetails

Karel Donk edited this page Dec 25, 2021 · 1 revision

QuantumGate::Local::Environment::AddressDetails is a struct containing details about an address.

Definition

struct AddressDetails
{
    Address Address;
    bool BoundToLocalInterface{ false };
    std::optional<PublicAddressDetails> PublicDetails;
};

Member variables

Name Description
Address The address.
BoundToLocalInterface Indicates whether the address is bound to an interface on the local host.
PublicDetails Optionally includes details about addresses used by the local instance that are publicly visible to peers. See QuantumGate::Local::Environment::PublicAddressDetails for more information.
Clone this wiki locally