home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / LIBC / LIBC-4.6 / LIBC-4 / libc-linux / sysdeps / linux / recv.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-19  |  425 b   |  20 lines

  1. #include <syscall.h>
  2. #include <sys/socket.h>
  3. #include <sys/socketcall.h>
  4.  
  5. static inline
  6. _syscall2(long,socketcall,int,call,unsigned long *,args);
  7.  
  8. /* recv, recvfrom added by bir7@leland.stanford.edu */
  9.  
  10. int
  11. recv (int sockfd, void *buffer, int len, unsigned flags)
  12. {
  13.   unsigned long args[4];
  14.   args[0] = sockfd;
  15.   args[1] = (unsigned long) buffer;
  16.   args[2] = len;
  17.   args[3] = flags;
  18.   return (socketcall (SYS_RECV, args));
  19. }
  20.