mirror of
https://github.com/ep00ch/lwip-contrib-mac.git
synced 2024-11-18 22:05:51 +00:00
25 lines
514 B
C
25 lines
514 B
C
#ifndef LWIP_PCAPIF_HELPER_H
|
|
#define LWIP_PCAPIF_HELPER_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct pcapifh_linkstate;
|
|
|
|
enum pcapifh_link_event {
|
|
PCAPIF_LINKEVENT_UNKNOWN,
|
|
PCAPIF_LINKEVENT_UP,
|
|
PCAPIF_LINKEVENT_DOWN
|
|
};
|
|
|
|
struct pcapifh_linkstate* pcapifh_linkstate_init(const char *adapter_name);
|
|
enum pcapifh_link_event pcapifh_linkstate_get(struct pcapifh_linkstate* state);
|
|
void pcapifh_linkstate_close(struct pcapifh_linkstate* state);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* LWIP_PCAPIF_HELPER_H */ |