HomeSort by: relevance | last modified time | path
    Searched defs:ihandlers (Results 1 - 1 of 1) sorted by relevancy

  /src/usr.sbin/mrouted/
main.c 61 } ihandlers[NHANDLERS]; variable in typeref:struct:ihandler[]
88 ihandlers[nhandlers].fd = fd;
89 ihandlers[nhandlers++].func = func;
260 if (ihandlers[i].fd >= FD_SETSIZE)
262 FD_SET(ihandlers[i].fd, &readers);
263 if (ihandlers[i].fd >= nfds)
264 nfds = ihandlers[i].fd + 1;
345 if (FD_ISSET(ihandlers[i].fd, &rfds)) {
346 (*ihandlers[i].func)(ihandlers[i].fd, &rfds)
    [all...]

Completed in 11 milliseconds