Class IPv4OptionStreamId

File: src/inet/networklayer/ipv4/IPv4Datagram.msg

C++ definition

Option Structure: Stream ID

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
IPv4Option class (no description)

Fields:

Name Type Description
type short
length short

total length of option

streamId short

Source code:

//
// Option Structure: Stream ID
//
class IPv4OptionStreamId extends IPv4Option
{
    type = IPOPTION_STREAM_ID;
    length = 4;
    short streamId;
}