detect beacons duplicated by redundant routes

This commit is contained in:
Jeff Hill
2002-02-12 00:45:04 +00:00
parent 285f9e718d
commit f2a0bd2ff8
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -84,6 +84,7 @@ int rsrv_online_notify_task()
SOCKET sock;
int true = TRUE;
unsigned short port;
ca_uint32_t beaconCounter = 0;
casSufficentSpaceInPool = osiSufficentSpaceInPool ();
@@ -136,6 +137,7 @@ int rsrv_online_notify_task()
memset((char *)&msg, 0, sizeof msg);
msg.m_cmmd = htons (CA_PROTO_RSRV_IS_UP);
msg.m_count = htons (ca_server_port);
msg.m_dataType = htons (CA_MINOR_PROTOCOL_REVISION);
ellInit (&beaconAddrList);
@@ -185,6 +187,7 @@ int rsrv_online_notify_task()
}
else if (if_addr.sin_family==AF_INET) {
msg.m_available = if_addr.sin_addr.s_addr;
msg.m_cid = htonl ( beaconCounter );
status = send (sock, (char *)&msg, sizeof(msg), 0);
if (status < 0) {
@@ -207,6 +210,8 @@ int rsrv_online_notify_task()
delay = maxdelay;
}
}
beaconCounter++; /* expected to overflow */
}
}
+1 -1
View File
@@ -41,7 +41,7 @@
#include "asLib.h"
#include "dbAddr.h"
#include "dbNotify.h"
#define CA_MINOR_PROTOCOL_REVISION 9
#define CA_MINOR_PROTOCOL_REVISION 10
#include "caProto.h"
#include "ellLib.h"
#include "epicsTime.h"