Class InterfaceEntry

File: src/inet/networklayer/common/InterfaceEntry.msg

C++ definition

(no description)

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Extends:

Name Type Description
cNamedObject (unknown -- not in documented files)

Fields:

Name Type Description
up bool
broadcast bool
multicast bool
pointToPoint bool
loopback bool
mtu int
macAddress MACAddress
ipv4Address IPv4Address

Source code:

class InterfaceEntry extends cNamedObject
{
    @existingClass(true);
    @descriptor(readonly);
    bool up @getter("isUp");
    bool broadcast @getter("isBroadcast");
    bool multicast @getter("isMulticast");
    bool pointToPoint @getter("isPointToPoint");
    bool loopback @getter("isLoopback");
    int mtu @getter("getMTU");
    MACAddress macAddress;
    IPv4Address ipv4Address @opaque @getter("getIPv4Address");
}