C++ definition: click here
Represents an UDP packet, to be used with the UDP module.
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.
| Name | Type | Description |
|---|---|---|
| sourcePort | int |
source port of the message |
| destinationPort | int |
destination port of the message |
// // Represents an \UDP packet, to be used with the UDP module. // packet SimpleUDPPacket { int sourcePort = -1; // source port of the message int destinationPort = -1; //destination port of the message }