Skip to content

QuantumGate::Local::Environment::EthernetInterface

Karel Donk edited this page Dec 11, 2019 · 1 revision

QuantumGate::Local::Environment::EthernetInterface is a struct containing details about an Ethernet interface.

Definition

struct EthernetInterface
{
    String Name;
    String Description;
    String MACAddress;
    bool Operational{ false };
    Vector<IPAddress> IPAddresses;
};

Member variables

Name Description
Name The name of the interface.
Description A description of the interface.
MACAddress The MAC address of the interface.
Operational Indicates whether the interface is operational or not.
IPAddresses A collection of IP addresses assigned to the interface.
Clone this wiki locally