7#ifndef CNID_DBD_USOCKFD_H
8#define CNID_DBD_USOCKFD_H 1
19#ifndef OSSH_ALIGNBYTES
20#define OSSH_ALIGNBYTES (sizeof(int) - 1)
24#define u_int unsigned int
26#define __CMSG_ALIGN(p) (((u_int)(p) + OSSH_ALIGNBYTES) &~ OSSH_ALIGNBYTES)
31#define CMSG_LEN(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + (len))
36#define CMSG_SPACE(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + __CMSG_ALIGN(len))
int usockfd_create(char *, mode_t, int)
int tsockfd_create(char *, char *, int)
Definition usockfd.c:31
int usockfd_check(int, const sigset_t *)
Definition usockfd.c:99