Home | History | Annotate | Download | only in syslogd

Lines Matching defs:socks

824 	struct socketEvent *s, *socks;
846 socks = malloc((maxs+1) * sizeof(*socks));
847 if (!socks) {
852 socks->fd = 0; /* num of sockets counter at start of array */
853 s = socks + 1;
890 socks->fd = socks->fd + 1; /* num counter */
894 if (socks->fd == 0) {
895 free (socks);
904 return socks;