| 38 | } |
| 39 | |
| 40 | void |
| 41 | graph_pcap_exit(struct rte_graph *graph) |
| 42 | { |
| 43 | if (rte_eal_process_type() == RTE_PROC_PRIMARY) |
| 44 | rte_mempool_free(pkt_mp); |
| 45 | |
| 46 | if (pcapng_fd) { |
| 47 | rte_pcapng_close(pcapng_fd); |
| 48 | pcapng_fd = NULL; |
| 49 | } |
| 50 | |
| 51 | /* Disable pcap. */ |
| 52 | graph->pcap_enable = 0; |
| 53 | graph_pcap_enable(0); |
| 54 | } |
| 55 | |
| 56 | static int |
| 57 | graph_pcap_default_path_get(char **dir_path) |
no test coverage detected