big change half done

This commit is contained in:
Dhanya Maliakal
2015-09-30 11:40:39 +02:00
parent 06b38e591c
commit c392348def
7 changed files with 1560 additions and 2634 deletions

View File

@ -517,13 +517,15 @@ slsReceiverDefs::runStatus UDPStandardImplementation::getStatus() const{
}
void UDPStandardImplementation::initialize(const char *detectorHostName){
void UDPStandardImplementation::setDetectorHostname(const char *detectorHostName){
if(strlen(detectorHostName))
strcpy(detHostname,detectorHostName);
}
char *UDPStandardImplementation::getDetectorHostname() const{
if(!strlen(detHostname))
return NULL;
return (char*)detHostname;
}