]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
new function NetTrans_multiReceive which has no limitation in terms of subsystems...
authorhadaq <hadaq>
Mon, 31 Mar 2008 17:39:53 +0000 (17:39 +0000)
committerhadaq <hadaq>
Mon, 31 Mar 2008 17:39:53 +0000 (17:39 +0000)
hadaq/nettrans.h

index 4055dba450832a73404d4d83181973b4d2bfbe3f..c7689085d39c52686625c01c84d390f20be57354 100644 (file)
@@ -5,6 +5,7 @@
 #include <netinet/in.h>
 #include <sys/socket.h>
 #include <sys/types.h>
+#include <sys/time.h>
 
 #include "worker.h"
 #include "hadtu.h"
@@ -41,8 +42,10 @@ NetTrans *NetTrans_open(const char *name, size_t bandwidth, Worker *worker);
 void NetTrans_close(NetTrans *my);
 void NetTrans_remove(NetTrans *my);
 
+int assembleMsg(NetTrans *my, void *hadTu, size_t size);
 int NetTrans_send(NetTrans *my, void *hadTu);
 void NetTrans_recv(NetTrans *my, void *hadTu, size_t size);
 unsigned long NetTrans_multiRecv(NetTrans *my[], void *hadTu[], size_t size[], int nrOfMsgs);
+fd_set *NetTrans_multiReceive(NetTrans *my[], void *hadTu[], size_t size[], int nrOfMsgs);
 
 #endif