Message UDPPacket

File: Transport/UDP/UDPPacket.msg

C++ definition: click here

Represents an UDP packet, to be used with the UDP module.

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Properties:

Name Value Description
omitGetVerb true

Fields:

Name Type Description
sourcePort int
destinationPort int

Source code:

message UDPPacket
{
    properties:
        omitGetVerb = true;
    fields:
        int sourcePort = -1;
        int destinationPort = -1;
};