ppc socket.h: add forgotten cmsghdr

This commit is contained in:
rofl0r 2012-11-18 02:38:41 +01:00
parent 71955b2ff8
commit ae67fe1aad

View File

@ -9,6 +9,13 @@ struct msghdr
unsigned msg_flags;
};
struct cmsghdr
{
socklen_t cmsg_len;
int cmsg_level;
int cmsg_type;
};
#define SO_DEBUG 1
#define SO_REUSEADDR 2
#define SO_TYPE 3