File Network/RSVP_TE/RSVPResvMsg.msg
Contains:
cplusplus {{
#include "IntServ.h"
#include "RSVPPacket.h"
}}
struct RsvpHopObj_t;
class noncobject IPAddress;
class noncobject FlowDescriptorVector;
class RSVPPacket;
message RSVPResvMsg extends RSVPPacket
{
properties:
customize=true;
fields:
RsvpHopObj_t hop;
FlowDescriptorVector flowDescriptor;
int rsvpKind = RESV_MESSAGE;
}
message RSVPResvTear extends RSVPPacket
{
properties:
customize=true;
fields:
RsvpHopObj_t hop;
FlowDescriptorVector flowDescriptor;
int rsvpKind = RTEAR_MESSAGE;
};
message RSVPResvError extends RSVPPacket
{
properties:
customize=true;
fields:
RsvpHopObj_t hop;
IPAddress errorNode;
int errorCode;
int rsvpKind = RERROR_MESSAGE;
};