-
Notifications
You must be signed in to change notification settings - Fork 23
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.
struct EthernetInterface
{
String Name;
String Description;
String MACAddress;
bool Operational{ false };
Vector<IPAddress> IPAddresses;
};
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. |