X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fbasic%2Fsocket-util.h;h=718de9ba347ff07a8fd2618fd10a08735ced4423;hp=b5d1dc3ed45b0bbf7296e6b9a3625b0a9067eb74;hb=4a7059686430f596810f0c83e4897154828fd352;hpb=35eec258c4523c92fe985d764198b266ebc3881a diff --git a/src/basic/socket-util.h b/src/basic/socket-util.h index b5d1dc3ed..718de9ba3 100644 --- a/src/basic/socket-util.h +++ b/src/basic/socket-util.h @@ -150,6 +150,8 @@ int flush_accept(int fd); #define CMSG_FOREACH(cmsg, mh) \ for ((cmsg) = CMSG_FIRSTHDR(mh); (cmsg); (cmsg) = CMSG_NXTHDR((mh), (cmsg))) +struct cmsghdr* cmsg_find(struct msghdr *mh, int level, int type, socklen_t length); + /* Covers only file system and abstract AF_UNIX socket addresses, but not unnamed socket addresses. */ #define SOCKADDR_UN_LEN(sa) \ ({ \ @@ -160,3 +162,7 @@ int flush_accept(int fd); 1 + strnlen(_sa->sun_path+1, sizeof(_sa->sun_path)-1) : \ strnlen(_sa->sun_path, sizeof(_sa->sun_path))); \ }) + +#if 0 /// UNNEEDED by elogind +int socket_ioctl_fd(void); +#endif // 0