Namespace inet
UdpSetTimeToLiveCommand
classControl info for setting the Time To Live (a.k.a. Hop Limit) option on an UDP socket. This option will affect both multicast and unicast packets. To set the option, send a message to the Udp module with kind=UDP_C_SETOPTION and an and instance of this control info class attached.
See also: UdpCommandCode
Extends
Name | Type | Description |
---|---|---|
UdpSetOptionCommand | (unknown -- not in documented files) |
Fields
Name | Type | Description |
---|---|---|
optionCode | ||
ttl | int |
Source code
// // Control info for setting the Time To Live (a.k.a. Hop Limit) option on an // UDP socket. This option will affect both multicast and unicast packets. // To set the option, send a message to the ~Udp module with kind=UDP_C_SETOPTION // and an and instance of this control info class attached. // // @see ~UdpCommandCode // class UdpSetTimeToLiveCommand extends UdpSetOptionCommand { optionCode = UDP_C_SETOPTION_TTL; int ttl; }File: src/inet/transportlayer/contract/udp/UdpControlInfo.msg