Home | History | Annotate | Download | only in mDNSShared

Lines Matching defs:fs

252 	fd_set *fs;
257 fs = &readfds;
258 FD_ZERO(fs);
268 fs = (fd_set *)calloc(nints, sizeof(int));
269 if (fs == NULL) { syslog(LOG_WARNING, "dnssd_clientstub more_bytes: malloc failed"); return 0; }
271 FD_SET(sd, fs);
272 ret = select((int)sd+1, fs, (fd_set*)NULL, (fd_set*)NULL, &tv);
273 if (fs != &readfds) free(fs);