bsd compat

This commit is contained in:
leitner 2004-05-05 20:01:40 +00:00
parent a6a00edd75
commit a23757a317
2 changed files with 5 additions and 2 deletions

View File

@ -6,7 +6,9 @@
union fdmsg {
struct cmsghdr h;
char buf[CMSG_SPACE(sizeof(int))];
/* on NetBSD, CMSG_SPACE is not constant */
/* char buf[CMSG_SPACE(sizeof(int))]; */
char buf[1000];
};
int io_passfd(int64 sock,int64 fd) {

View File

@ -1,3 +1,4 @@
#include <stddef.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/uio.h>
@ -6,7 +7,7 @@
union fdmsg {
struct cmsghdr h;
char buf[CMSG_SPACE(sizeof(int))];
char buf[1000];
};
int64 io_receivefd(int64 sock) {