mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-12 12:57:13 +02:00
merge fix from 3.0.1 regarding gethostbyname thread safety
This commit is contained in:
@ -6435,13 +6435,15 @@ int slsDetector::setUDPConnection(){
|
|||||||
strcpy(thisDetector->receiverUDPIP,thisDetector->receiver_hostname);
|
strcpy(thisDetector->receiverUDPIP,thisDetector->receiver_hostname);
|
||||||
//if hostname not ip, convert it to ip
|
//if hostname not ip, convert it to ip
|
||||||
else{
|
else{
|
||||||
struct hostent *he = gethostbyname(thisDetector->receiver_hostname);
|
struct addrinfo *result;
|
||||||
if (he == NULL){
|
if (!dataSocket->ConvertHostnameToInternetAddress(thisDetector->receiver_hostname, &result)) {
|
||||||
cout<<"rx_hostname:"<<thisDetector->receiver_hostname<<endl;
|
// on success
|
||||||
std::cout << "no rx_udpip given and could not convert receiver hostname to ip" << endl;
|
memset(thisDetector->receiverUDPIP, 0, MAX_STR_LENGTH);
|
||||||
return FAIL;
|
// on failure, back to none
|
||||||
}else
|
if (dataSocket->ConvertInternetAddresstoIpString(result, thisDetector->receiverUDPIP, MAX_STR_LENGTH)) {
|
||||||
strcpy(thisDetector->receiverUDPIP,inet_ntoa(*(struct in_addr*)he->h_addr));
|
strcpy(thisDetector->receiverUDPIP, "none");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -6522,13 +6524,14 @@ int slsDetector::configureMAC(){
|
|||||||
strcpy(thisDetector->receiverUDPIP,thisDetector->receiver_hostname);
|
strcpy(thisDetector->receiverUDPIP,thisDetector->receiver_hostname);
|
||||||
//if hostname not ip, convert it to ip
|
//if hostname not ip, convert it to ip
|
||||||
else{
|
else{
|
||||||
struct hostent *he = gethostbyname(thisDetector->receiver_hostname);
|
struct addrinfo *result;
|
||||||
if (he != NULL)
|
if (!dataSocket->ConvertHostnameToInternetAddress(thisDetector->receiver_hostname, &result)) {
|
||||||
strcpy(thisDetector->receiverUDPIP,inet_ntoa(*(struct in_addr*)he->h_addr));
|
// on success
|
||||||
else{
|
memset(thisDetector->receiverUDPIP, 0, MAX_STR_LENGTH);
|
||||||
std::cout << "configure mac failed. no rx_udpip given and invalid receiver hostname" << endl;
|
// on failure, back to none
|
||||||
setErrorMask((getErrorMask())|(COULD_NOT_CONFIGURE_MAC));
|
if (dataSocket->ConvertInternetAddresstoIpString(result, thisDetector->receiverUDPIP, MAX_STR_LENGTH)) {
|
||||||
return FAIL;
|
strcpy(thisDetector->receiverUDPIP, "none");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user