Packet RIPPacket

File: src/inet/routing/rip/RIPPacket.msg

C++ definition

RIPv2 packet

note: Authentication entry is not allowed

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.

Fields:

Name Type Description
command unsigned char
entry RIPEntry[]

version is fixed: 2

Source code:

//
// RIPv2 packet
//
// note: Authentication entry is not allowed
//
packet RIPPacket
{
    unsigned char command @enum(RIPCommand);
    // version is fixed: 2
    RIPEntry entry[];
}