/* ISC license. */ #include #include #include #include #include #include #include int ipc_send (int fd, char const *s, unsigned int len, char const *path) { struct sockaddr_un sa ; register unsigned int l = str_len(path) ; if (l > IPCPATH_MAX) return (errno = EPROTO, -1) ; byte_zero(&sa, sizeof sa) ; sa.sun_family = AF_UNIX ; byte_copy(sa.sun_path, l+1, path) ; return sendto(fd, s, len, 0, (struct sockaddr *)&sa, sizeof sa) ; }