Changeset 3374 for source/ariba/AribaModule.cpp
- Timestamp:
- May 7, 2009, 4:51:31 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/AribaModule.cpp
r3037 r3374 44 44 45 45 // ariba includes 46 #include "ariba/SideportListener.h" 46 47 #include "ariba/utility/misc/Helper.h" 47 48 #include "ariba/utility/misc/StringFormat.h" … … 56 57 namespace ariba { 57 58 58 AribaModule::AribaModule() { 59 AribaModule::AribaModule() 60 : base_comm(NULL), sideport_sniffer(NULL), 61 ip_addr(NULL), started(false) { 59 62 60 63 // init with default values 61 this->base_comm = NULL; 62 this->ip_addr = NULL; 64 63 65 this->tcp_port = 41402; 64 66 this->udp_port = 41402; 65 this->started = false;66 67 } 67 68 … … 145 146 } 146 147 148 void AribaModule::registerSideportListener(SideportListener* sideport){ 149 sideport_sniffer = sideport; 150 } 151 147 152 // @see Module.h 148 153 void AribaModule::initialize() {
Note:
See TracChangeset
for help on using the changeset viewer.