fixes for bugs 133 and 134 in Mantis

This commit is contained in:
Jeff Hill
2004-09-23 23:15:22 +00:00
parent 107f1fa37f
commit 7b7a07c667
28 changed files with 1386 additions and 940 deletions

View File

@@ -19,6 +19,8 @@
* Author: Jeff Hill
*/
#include <stdexcept>
#include <limits.h>
#include <float.h>
@@ -124,17 +126,33 @@ void netiiu::eliminateExcessiveSendBacklog (
void netiiu::requestRecvProcessPostponedFlush (
epicsGuard < epicsMutex > & )
{
return;
}
void netiiu::uninstallChan (
epicsGuard < epicsMutex > &,
epicsGuard < epicsMutex > &, nciu & )
{
throw cacChannel::notConnected();
}
double netiiu::receiveWatchdogDelay (
epicsGuard < epicsMutex > & guard ) const
{
return - DBL_MAX;
}
void netiiu::uninstallChanDueToSuccessfulSearchResponse (
epicsGuard < epicsMutex > &, nciu &,
const epicsTime & currentTime )
{
throw std::runtime_error (
"search response occured when not attached to udpiiu?" );
}
bool netiiu::searchMsg (
epicsGuard < epicsMutex > &, ca_uint32_t id,
const char * pName, unsigned nameLength )
{
return false;
}