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
// // This program is property of its copyright holder. All rights reserved. // 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 { }