You are here: CSP API Reference > 1 EXS & SwitchKit API Messages > HexTool
Type
SwitchKit API message
Purpose
Use the SK_HexTool message to send a configuration file directly to a specific slot in a node.
Description
This message sends a config file containing EXS API to a specific slot. The *.cfg file is resent whenever required, based on the configuration setting for the card in the designated slot.
Sent by
CSA or SwitchManager
Arguments
The following table shows the user modifiable arguments of this message:
Arguments |
Descriptions |
---|---|
Node |
The node ID the file is destined for. |
Slot |
The slot number the file is destined for. |
CfgFile |
The filename of the file to parse and send. |
Configuration
HexTool (
Node = integer,
Slot = integer,
CfgFile = quoted string
ConnectionID = integer);
C Structure
typedef struct {
char CfgFile[100];
UBYTE Slot;
UBYTE Node;
} SK_HexTool;
C++ Class
class SKC_HexTool : public SKC_DummyMessage {
public:
const char *getCfgFile() const;
void setCfgFile(const char *x);
UBYTE getSlot() const;
void setSlot(UBYTE x);
UBYTE getNode() const;
void setNode(UBYTE x);
};