| 1148 | } |
| 1149 | |
| 1150 | static inline int |
| 1151 | rx_iface_args_process(const char *key, const char *value, void *extra_args) |
| 1152 | { |
| 1153 | if (strcmp(key, ETH_PCAP_RX_IFACE_ARG) == 0 || |
| 1154 | strcmp(key, ETH_PCAP_RX_IFACE_IN_ARG) == 0) |
| 1155 | return open_rx_iface(key, value, extra_args); |
| 1156 | |
| 1157 | return 0; |
| 1158 | } |
| 1159 | |
| 1160 | /* |
| 1161 | * Opens a NIC for writing packets to it |
nothing calls this directly
no test coverage detected