You are here: CSP API Reference > 1 EXS & SwitchKit API Messages > UpgradeSoftwarePatch
Type Type
SwitchKit API message
Description
Use the SK_UpgradeSoftwarePatch message to upgrade node software specified by the functions setNode(UBYTE n) and getNode() of the base class SKC_Message.
Sent by
SwitchManager
Arguments
The following table shows the arguments that you can modify:
Argument |
Description |
---|---|
Filename |
File name of software patch to be downloaded. |
C Structure
typedef struct {
char Filename[230];
} SK_UpgradeSoftwarePatch;
C Structure Response
typedef struct {
int Status;
} SK_UpgradeSoftwarePatchAck;
C++ Class
class SKC_UpgradeSoftwarePatch : public SKC_ToolkitMessage {
public:
const char *getFilename() const;
void setFilename(const char *x);
};
C++ Class Response
class SKC_UpgradeSoftwarePatchAck : public SKC_ToolkitAck {
public:
int getStatus() const;
void setStatus(int x);
};