blob: 91a7157d07fe101e047a8052690aec8d31afe333 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include <unistd.h>
#include <string.h>
#include <sys/uio.h>
int
readv(int fd, struct iovec *v, int ent)
{
int x, i, n, len;
char *t;
char buf[10*1024];
for(len = i = 0; i < ent; i++)
len += v[i].iov_len;
if(len > sizeof(buf))
len = sizeof(buf);
len = read(fd, buf, len);
if(len <= 0)
return len;
for(n = i = 0; n < len && i < ent; i++){
x = len - n;
if(x > v[i].iov_len)
x = v[i].iov_len;
memmove(v[i].iov_base, buf + n, x);
n += x;
}
return len;
}
|