hostName() function name change to getHostName()

This commit is contained in:
Jeff Hill
2004-10-19 20:54:40 +00:00
parent 86e71a90b0
commit 89814eb9e2
2 changed files with 2 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ tcpRecvWatchdog::expire ( const epicsTime & /* currentTime */ ) // X aCC 361
{
# ifdef DEBUG
char hostName[128];
this->iiu.hostName ( guard, hostName, sizeof (hostName) );
this->iiu.getHostName ( guard, hostName, sizeof (hostName) );
debugPrintf ( ( "CA server \"%s\" unresponsive after %g inactive sec"
"- disconnecting.\n",
hostName, this->period ) );

View File

@@ -53,7 +53,7 @@ epicsTimerNotify::expireStatus tcpSendWatchdog::expire (
}
# ifdef DEBUG
char hostName[128];
this->iiu.hostName ( guard, hostName, sizeof ( hostName ) );
this->iiu.getHostName ( guard, hostName, sizeof ( hostName ) );
debugPrintf ( ( "Request not accepted by CA server %s for %g sec. Disconnecting.\n",
hostName, this->period ) );
# endif