summaryrefslogtreecommitdiff
path: root/perlsock.h
diff options
context:
space:
mode:
Diffstat (limited to 'perlsock.h')
-rw-r--r--perlsock.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/perlsock.h b/perlsock.h
index 08c04f3615..70350bef54 100644
--- a/perlsock.h
+++ b/perlsock.h
@@ -35,6 +35,7 @@
#define PerlSock_inet_addr(c) piSock->InetAddr(c, ErrorNo())
#define PerlSock_inet_ntoa(i) piSock->InetNtoa(i, ErrorNo())
#define PerlSock_listen(s, b) piSock->Listen(s, b, ErrorNo())
+#define PerlSock_recv(s, b, l, f) piSock->Recv(s, b, l, f, ErrorNo())
#define PerlSock_recvfrom(s, b, l, f, from, fromlen) piSock->Recvfrom(s, b, l, f, from, fromlen, ErrorNo())
#define PerlSock_select(n, r, w, e, t) piSock->Select(n, (char*)r, (char*)w, (char*)e, t, ErrorNo())
#define PerlSock_send(s, b, l, f) piSock->Send(s, b, l, f, ErrorNo())