File: Applications/UDPApp/UDPEchoApp.ned
C++ definition: click here
Similar to UDPBasicApp, but it sends back the packet after reception.
The following diagram shows usage relationships between modules, networks and channels. Unresolved module (and channel) types are missing from the diagram. Click here to see the full picture.
Name | Type | Description |
---|---|---|
local_port | numeric const | |
dest_port | numeric const | |
message_length | numeric const | (bits) |
message_freq | numeric | should usually be a random value, e.g. exponential(1) |
dest_addresses | string | list of IP addresses, separated by spaces |
Name | Direction | Description |
---|---|---|
from_udp | input | |
to_udp | output |
simple UDPEchoApp parameters: local_port : numeric const, dest_port : numeric const, message_length : numeric const, // (bits) message_freq : numeric, // should usually be a random value, e.g. exponential(1) dest_addresses: string; // list of \IP addresses, separated by spaces gates: in: from_udp; out: to_udp; endsimple