You are here: CSP API Reference > 1 EXS & SwitchKit API Messages > Resource Attribute Configure 0x00E3
Resource Attribute Configure 0x00E3
SwitchKit Name
ResourceAttributeConfig
Type
EXS API and SwitchKit API message
Description
Use this message to configure attributes on a VDAC-ONE card, IP Network Interface Series 2 card, or a VoIP module.
For VDAC-ONE cards, if a span/channel is active, this message waits until the call ends before updating the configuration.
For IP Network Interface Series 2 cards, you can change the payload size and type during the call.
Sent By
SwitchKit Code
Configuration
ResourceAttributeConfig (
Node = integer,
Slot = integer,
DataType = integer,
TLVCount = integer,
Data = byte array);
C Structure
typedef struct {
UBYTE Slot;
UBYTE DataType;
UBYTE TLVCount;
UBYTE Data[221];
} XL_ResourceAttributeConfig;
C++ Class
class XLC_ResourceAttributeConfig : public XLC_OutboundMessage {
public:
UBYTE getSlot() const;
void setSlot(UBYTE x);
UBYTE getDataType() const;
void setDataType(UBYTE x);
UBYTE getTLVCount() const;
void setTLVCount(UBYTE x);
const UBYTE *getData() const;
UBYTE *getData();
void setData(UBYTE *x);
};
EXS API Hex Format
MESSAGE (White) |
RESPONSE (Gray) |
||
Byte |
Field Description |
Byte |
Field Description |
0 |
Frame (0XFE) |
0 |
Frame (0XFE) |
1, 2 |
Length (0xNNNN) |
1, 2 |
Length (0xNNNN) |
3, 4 |
Message Type (0x00E3) |
3, 4 |
Message Type (0x00E3) |
5 |
Reserved |
5 |
Reserved |
6 |
Sequence Number |
6 |
Sequence Number |
7 |
Logical Node ID |
7 |
Logical Node ID |
8 : |
Address Method 0x00 - Individual AEs |
8, 9 |
|
Number of AEs to follow |
10 |
Checksum |
|
AEs |
|||
: |
Data Type 0x00 - TLVs |
||
: |
Number of TLV blocks to follow |
||
: |
Data (TLVs) 0x0009 Address Element TLV (Required if TLV 0x01E2 below is included in message.) 0x0100 RTP Payload Type (VDAC-ONE) 0x0101 RTP Payload Size (VDAC-ONE) 0x0100 RTP Payload Type (IPN Series 2) 0x0101 RTP Payload Size (IPN Series 2) 0x0102 RTP Silence Suppression 0x01C2 Minimum Jitter Buffer Delay 0x01C3 Maximum Jitter Buffer Delay 0x01DF UDP Source Port Validate 0x01E5 VoIP Resource Profile Assign 0x01EB RTP Timer Timeout (VDAC-ONE) 0x01EC Media Inactivity Detection Timer |
||
: |
Checksum |