Searched refs:__CMSG_ALIGN (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.0-release/crypto/openssh/
H A Ddefines.h493 #ifndef __CMSG_ALIGN
494 #define __CMSG_ALIGN(p) (((u_int)(p) + OSSH_ALIGNBYTES) &~ OSSH_ALIGNBYTES) macro
499 #define CMSG_LEN(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + (len))
504 #define CMSG_SPACE(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + __CMSG_ALIGN(len))
509 #define CMSG_DATA(cmsg) ((u_char *)(cmsg) + __CMSG_ALIGN(sizeof(struct cmsghdr)))

Completed in 219 milliseconds