wlantest: Comment out Linux packet socket from OS X build
For now, allow wlantest to be built on OS X without support for live sniffer capturing. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
e13f836dde
commit
c25dc978a6
1 changed files with 24 additions and 0 deletions
|
@ -7,14 +7,36 @@
|
|||
*/
|
||||
|
||||
#include "utils/includes.h"
|
||||
#ifndef __APPLE__
|
||||
#include <net/if.h>
|
||||
#include <netpacket/packet.h>
|
||||
#endif /* __APPLE__ */
|
||||
|
||||
#include "utils/common.h"
|
||||
#include "utils/eloop.h"
|
||||
#include "wlantest.h"
|
||||
|
||||
|
||||
#ifdef __APPLE__
|
||||
|
||||
int monitor_init(struct wlantest *wt, const char *ifname)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
int monitor_init_wired(struct wlantest *wt, const char *ifname)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
void monitor_deinit(struct wlantest *wt)
|
||||
{
|
||||
}
|
||||
|
||||
#else /* __APPLE__ */
|
||||
|
||||
static void monitor_read(int sock, void *eloop_ctx, void *sock_ctx)
|
||||
{
|
||||
struct wlantest *wt = eloop_ctx;
|
||||
|
@ -146,3 +168,5 @@ void monitor_deinit(struct wlantest *wt)
|
|||
wt->monitor_wired = -1;
|
||||
}
|
||||
}
|
||||
|
||||
#endif /* __APPLE__ */
|
||||
|
|
Loading…
Reference in a new issue