Switch to unified view

a/src/Common/ExternConsts.cc b/src/Common/ExternConsts.cc
...
...
23
const char* MOD_FAITABLE        = "faiTable";
23
const char* MOD_FAITABLE        = "faiTable";
24
const char* MOD_EFCP            = "efcp";
24
const char* MOD_EFCP            = "efcp";
25
const char* MOD_RESALLOC        = "resourceAllocator";
25
const char* MOD_RESALLOC        = "resourceAllocator";
26
const char* MOD_RA              = "ra";
26
const char* MOD_RA              = "ra";
27
const char* MOD_IRM             = "irm";
27
const char* MOD_IRM             = "irm";
28
const char* MOD_CDAP            = "commonDistributedApplicationProtocol";
29
const char* MOD_CDAPMSGLOG      = "cdapMsgLog";
30
const char* MOD_CDAPSPLIT       = "cdapSplitter";
31
const char* MOD_CDAPCACE        = "cace";
32
const char* MOD_CDAPAUTH        = "auth";
33
const char* MOD_CDAPCDAP        = "cdap";
28
34
29
//Module parameters
35
//Module parameters
30
const char* PAR_IPCADDR         = "ipcAddress";
36
const char* PAR_IPCADDR         = "ipcAddress";
31
const char* PAR_DIFNAME         = "difName";
37
const char* PAR_DIFNAME         = "difName";
32
const char* PAR_PORTID          = "portId";
38
const char* PAR_PORTID          = "portId";
...
...
36
const char* PAR_AENAME          = "aeName";
42
const char* PAR_AENAME          = "aeName";
37
const char* PAR_AEINSTANCE      = "aeInstance";
43
const char* PAR_AEINSTANCE      = "aeInstance";
38
const char* PAR_CONFIGDATA      = "configData";
44
const char* PAR_CONFIGDATA      = "configData";
39
45
40
//Gate names
46
//Gate names
41
const char* GATE_NORTHIO        = "northIo_";
42
const char* GATE_SOUTHIO        = "southIo_";
47
const char* GATE_SOUTHIO        = "southIo";
48
const char* GATE_NORTHIO_       = "northIo_";
49
const char* GATE_SOUTHIO_       = "southIo_";
43
const char* GATE_EFCPIO         = "efcpIo_";
50
const char* GATE_EFCPIO_        = "efcpIo_";
44
const char* GATE_RMT            = "rmt_";
51
const char* GATE_RMT_           = "rmt_";
52
const char* GATE_RMTIO          = "rmtIo";
45
const char* GATE_APPIO          = "appIo_";
53
const char* GATE_APPIO_         = "appIo_";
46
const char* GATE_AEIO           = "aeIo";
54
const char* GATE_AEIO           = "aeIo";
47
const char* GATE_DATAIO         = "dataIo";
55
const char* GATE_DATAIO         = "dataIo";
56
const char* GATE_SPLITIO        = "splitterIo";
57
const char* GATE_CACEIO         = "caceIo";
58
const char* GATE_AUTHIO         = "authIo";
59
const char* GATE_CDAPIO         = "cdapIo";
48
60
49
//XML attributes and elements
61
//XML attributes and elements
50
const char* ELEM_APN         = "APN";
62
const char* ELEM_APN            = "APN";
51
const char* ATTR_APN            = "apn";
63
const char* ATTR_APN            = "apn";
52
64
53
//Values
65
//Values
54
//TODO: Vesely @Marek - What about -1 as default DoNotCare value
66
//TODO: Vesely @Marek - What about -1 as default DoNotCare value
55
const int   VAL_QOSPARAMDONOTCARE    = -1;
67
const int   VAL_QOSPARDONOTCARE = -1;
56
const bool  VAL_QOSPARAMDEFBOOL      = false;
68
const bool  VAL_QOSPARDEFBOOL   = false;
57
69