-static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/nettrans.c,v 6.39 2007-07-05 15:56:58 hadaq Exp $";
+static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/nettrans.c,v 6.40 2008-03-31 17:45:21 hadaq Exp $";
#define _GNU_SOURCE
#include <string.h>
#include <netinet/in.h>
#include <sys/socket.h>
-#include <sys/time.h>
-#include <sys/types.h>
+/* #include <sys/time.h> */
+/* #include <sys/types.h> */
#include <syslog.h>
retVal = -1;
}
- my->mtuSize = 15 * 1024;
+ my->mtuSize = 63 * 1024;
if (0 > retVal) {
syslog(LOG_DEBUG, "openUdp: %s", strerror(errno));
return 0;
}
-static int assembleMsg(NetTrans *my, void *hadTu, size_t size)
+int assembleMsg(NetTrans *my, void *hadTu, size_t size)
{
int retVal;
/* the parent functions this should be handled, but this would need */
/* better sunc. between nettrans & shmtrans */
if (hadTu == NULL) {
- my->pkt = malloc(my->mtuSize);
- if (0 > recvGeneric(my)) {
- abort();
- }
+/* my->pkt = malloc(my->mtuSize); */
+/* if (0 > recvGeneric(my)) { */
+/* abort(); */
+/* } */
my->offset = 0;
(*my->pktsDiscarded)++;
- free(my->pkt);
+/* free(my->pkt); */
return 0;
}
my->pkt = (char *) hadTu + my->offset;
unsigned long NetTrans_multiRecv(NetTrans *my[], void *hadTu[], size_t size[], int nrOfMsgs)
{
+ /*
+ * This original function has a limitation of maximum 32 subsystems.
+ * This limitation is due to a bit mask msgIsComplete of an unsigned long type.
+ */
int i;
unsigned long msgIsComplete;
fd_set fdSetS, *fdSet = &fdSetS;
msgIsComplete = 0;
- do {
+ /* do { */
FD_ZERO(fdSet);
for (i = 0; i < nrOfMsgs; i++) {
FD_SET(my[i]->fd, fdSet);
}
}
}
- } while (0 && msgIsComplete == 0);
+ /* } while (0 && msgIsComplete == 0); */
return msgIsComplete;
}
+
+fd_set *NetTrans_multiReceive(NetTrans *my[], void *hadTu[], size_t size[], int nrOfMsgs)
+{
+ /*
+ * This function does not have a limitation of a number of subsystems
+ * due to a bit mask msgIsComplete. Instead the function returns fdSet itself
+ * which should be later checked with FD_ISSET. S.Y.
+ */
+ int i;
+ fd_set fdSetS, *fdSet = &fdSetS;
+
+ FD_ZERO(fdSet);
+
+ for (i = 0; i < nrOfMsgs; i++) {
+ FD_SET(my[i]->fd, fdSet);
+ }
+
+ if (0 > select(getdtablesize(), fdSet, NULL, NULL, NULL)) {
+ printf("nettranc::NetTrans_multiReceive: abort after select\n");
+ abort();
+ }
+
+ return fdSet;
+}