Home | History | Annotate | Download | only in syslogd

Lines Matching defs:funix

178 int   *funix;			/* Unix domain datagram sockets */
515 funix = malloc(sizeof(*funix) * funixsize);
516 if (funix == NULL) {
517 logerror("Couldn't allocate funix descriptors");
526 funix[j] = socket(AF_LOCAL, SOCK_DGRAM, 0);
527 if (funix[j] < 0 || bind(funix[j],
533 setsockbuf(funix[j], *pp);
701 event_set(ev, funix[j], EV_READ | EV_PERSIST,
3094 FREEPTR(funix);