/*
- * $Id: comm.cc,v 1.340 2002/10/16 15:03:12 adrian Exp $
+ * $Id: comm.cc,v 1.341 2002/10/21 05:38:32 adrian Exp $
*
* DEBUG: section 5 Socket Functions
* AUTHOR: Harvest Derived
}
+/*
+ * synchronous wrapper around udp socket functions
+ */
+
+int
+comm_recvfrom(int fd, void *buf, size_t len, int flags,
+ struct sockaddr *from, socklen_t *fromlen)
+{
+ statCounter.syscalls.sock.recvfroms++;
+ return recvfrom(fd, buf, len, flags, from, fromlen);
+}
+
+
+
/* Older stuff */
static void