1 | #include "MessagesIdentifiers.h"
|
---|
2 |
|
---|
3 | const char* MessagesIdentifiers::GeneralConfigurationReq = "GeneralConfigurationReq";
|
---|
4 | const char* MessagesIdentifiers::GeneralConfigurationRsp = "GeneralConfigurationRsp";
|
---|
5 | const char* MessagesIdentifiers::SetFilterReq = "SetFilterReq";
|
---|
6 | const char* MessagesIdentifiers::SetFilterRsp = "SetFilterRsp";
|
---|
7 | const char* MessagesIdentifiers::StartTrafficCaptureReq = "StartTrafficCaptureReq";
|
---|
8 | const char* MessagesIdentifiers::StartTrafficCaptureRsp = "StartTrafficCaptureRsp";
|
---|
9 | const char* MessagesIdentifiers::StopTrafficCaptureReq = "StopTrafficCaptureReq";
|
---|
10 | const char* MessagesIdentifiers::StopTrafficCaptureRsp = "StopTrafficCaptureRsp";
|
---|
11 | const char* MessagesIdentifiers::EquipmentOperationReq = "EquipmentOperationReq";
|
---|
12 | const char* MessagesIdentifiers::EquipmentOperationRsp = "EquipmentOperationRsp";
|
---|
13 | const int MessagesIdentifiers::Size = 10;
|
---|
14 |
|
---|
15 | const char* MessagesIdentifiers::Messages[] = {
|
---|
16 | "GeneralConfigurationReq", //0
|
---|
17 | "GeneralConfigurationRsp", //1
|
---|
18 | "SetFilterReq", //2
|
---|
19 | "SetFilterRsp", //3
|
---|
20 | "StartTrafficCaptureReq", //4
|
---|
21 | "StartTrafficCaptureRsp", //5
|
---|
22 | "StopTrafficCaptureReq", //6
|
---|
23 | "StopTrafficCaptureRsp", //7
|
---|
24 | "EquipmentOperationReq", //8
|
---|
25 | "EquipmentOperationRsp", //9
|
---|
26 | ""
|
---|
27 | };
|
---|
28 |
|
---|