only try to receive one byte to avoid discarding data

This commit is contained in:
Felix von Leitner 2010-10-06 17:33:25 +00:00
parent d702d06774
commit 0305cf80fb
1 changed files with 3 additions and 3 deletions

View File

@ -41,10 +41,10 @@ int64 io_receivefd(int64 sock) {
#else
int fd;
#endif
char x[100];
char x;
char name[100];
iov.iov_base=x;
iov.iov_len=100;
iov.iov_base=&x;
iov.iov_len=1;
msg.msg_name=name;
msg.msg_namelen=100;
#ifdef CMSG_FIRSTHDR