/* ISC license. */ #include #include #include #include int fd_recv (int fd, char *buf, unsigned int len, unsigned int flags) { register int r ; do r = recv(fd, buf, len, (int)flags) ; while ((r == -1) && (errno == EINTR)) ; return r ; }