summaryrefslogtreecommitdiff
path: root/src/libstddjb/ipc_send.c
blob: 0e71d98ff1ccedc2293cc535c80a93e67fa27f45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ISC license. */

#include <skalibs/nonposix.h>
#include <errno.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <skalibs/bytestr.h>
#include <skalibs/error.h>
#include <skalibs/webipc.h>

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) ;
}