Home
last modified time | relevance | path

Searched refs:pcap_dags (Results 1 – 1 of 1) sorted by relevance

/netbsd/src/external/bsd/libpcap/dist/
Dpcap-dag.c196 static pcap_dag_node_t *pcap_dags = NULL; variable
223 …for (prev = NULL, curr = pcap_dags; curr != NULL && curr->p != p; prev = curr, curr = curr->next) { in delete_pcap_dag()
231 pcap_dags = curr->next; in delete_pcap_dag()
271 while (pcap_dags != NULL) { in atexit_handler()
272 if (pcap_dags->pid == getpid()) { in atexit_handler()
273 if (pcap_dags->p != NULL) in atexit_handler()
274 dag_platform_cleanup(pcap_dags->p); in atexit_handler()
276 delete_pcap_dag(pcap_dags->p); in atexit_handler()
295 node->next = pcap_dags; in new_pcap_dag()
299 pcap_dags = node; in new_pcap_dag()