Searched refs:MAX_ACTIVE_LIST (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/libpcap/rpcapd/
H A Dconfig_params.h42 #define MAX_ACTIVE_LIST 10 macro
52 extern struct active_pars activelist[MAX_ACTIVE_LIST]; //!< Keeps the list of the hosts (host, port) on which I want to connect to (active mode)
H A Dfileconf.c208 // We can't have more than MAX_ACTIVE_LIST
211 if (num_active_clients >= MAX_ACTIVE_LIST)
221 MAX_ACTIVE_LIST);
472 for (int i = num_active_clients; i < MAX_ACTIVE_LIST; i++)
518 while ((i < MAX_ACTIVE_LIST) && (activelist[i].address[0] != 0))
H A Drpcapd.c76 struct active_pars activelist[MAX_ACTIVE_LIST]; //!< Keeps the list of the hosts (host, port) on which I want to connect to (active mode)
245 while ((tmpaddress != NULL) && (i < MAX_ACTIVE_LIST))
261 if (i > MAX_ACTIVE_LIST)
262 rpcapd_log(LOGPRIO_ERROR, "Only MAX_ACTIVE_LIST active connections are currently supported.");
510 while ((i < MAX_ACTIVE_LIST) && (activelist[i].address[0] != 0))

Completed in 89 milliseconds