]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - fd.c
dccp_recv/udp_recv: Use the new nonblock API.
[paraslash.git] / fd.c
diff --git a/fd.c b/fd.c
index d56a31101ade30bd8790d8082f8a3be5f5b84004..2e59bc95111d4e94daac0cf070ddf48b0dde4c81 100644 (file)
--- a/fd.c
+++ b/fd.c
@@ -177,27 +177,6 @@ int read_nonblock(int fd, void *buf, size_t sz, fd_set *rfds, size_t *num_bytes)
        return readv_nonblock(fd, &iov, 1, rfds, num_bytes);
 }
 
-/**
- * Simple wrapper for readv().
- *
- * \param fd The file descriptor to read from.
- * \param iov Scatter/gather array used in readv().
- * \param iovcnt Number of elements in \a iov.
- *
- * \return A negative error code on errors, the return value of the underlying
- * call to readv() otherwise.
- *
- * \sa readv(2).
- */
-int para_readv(int fd, struct iovec *iov, int iovcnt)
-{
-       int ret = readv(fd, iov, iovcnt);
-
-       if (ret < 0)
-               return -ERRNO_TO_PARA_ERROR(errno);
-       return ret;
-}
-
 /**
  * Check whether a file exists.
  *