Msg File src/inet/networklayer/ipv4/Ipv4OptionsTag.msg
Name | Type | Description |
---|---|---|
Ipv4OptionsTagBase | class | (no description) |
Ipv4OptionsReq | class |
Determines the source and destination network addresses for an outgoing packet. |
Ipv4OptionsInd | class |
Specifies the source and destination network addresses for an incoming packet. |
Source code
// // Copyright (C) 2020 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // import inet.common.INETDefs; import inet.common.TagBase; import inet.networklayer.ipv4.Ipv4Header; namespace inet; class Ipv4OptionsTagBase extends TagBase { Ipv4Option *option[] @owned; } // // Determines the source and destination network addresses for an outgoing packet. // class Ipv4OptionsReq extends Ipv4OptionsTagBase { } // // Specifies the source and destination network addresses for an incoming packet. // class Ipv4OptionsInd extends Ipv4OptionsTagBase { }