Ignore:
Timestamp:
May 7, 2009, 4:51:31 PM (15 years ago)
Author:
Christoph Mayer
Message:

-Integration of Branch 20090424-mayer-sideport

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/AribaModule.cpp

    r3037 r3374  
    4444
    4545// ariba includes
     46#include "ariba/SideportListener.h"
    4647#include "ariba/utility/misc/Helper.h"
    4748#include "ariba/utility/misc/StringFormat.h"
     
    5657namespace ariba {
    5758
    58 AribaModule::AribaModule() {
     59AribaModule::AribaModule()
     60        : base_comm(NULL), sideport_sniffer(NULL),
     61                ip_addr(NULL), started(false) {
    5962
    6063        // init with default values
    61         this->base_comm = NULL;
    62         this->ip_addr = NULL;
     64
    6365        this->tcp_port = 41402;
    6466        this->udp_port = 41402;
    65         this->started = false;
    6667}
    6768
     
    145146}
    146147
     148void AribaModule::registerSideportListener(SideportListener* sideport){
     149        sideport_sniffer = sideport;
     150}
     151
    147152// @see Module.h
    148153void AribaModule::initialize() {
Note: See TracChangeset for help on using the changeset viewer.