Home | History | Annotate | Download | only in identd

Lines Matching defs:socks

97 	int IPv4or6, ch, error, i, *socks, timeout;
108 socks = NULL;
250 socks = socketsetup(address, portno, IPv4or6);
270 rfds = malloc(*socks * sizeof(struct pollfd));
273 nfds = *socks;
275 rfds[i].fd = socks[i+1];
584 int error, maxs, *s, *socks;
602 socks = malloc((maxs + 1) * sizeof(int));
603 if (socks == NULL) {
608 *socks = 0;
609 s = socks + 1;
627 *socks = *socks + 1;
631 if (*socks == 0) {
632 free(socks);
639 return socks;