bsd: Fix driver_wired.c build

This commit is contained in:
Masashi Honma 2010-01-09 10:53:44 +02:00 committed by Jouni Malinen
parent 1056dad796
commit 60e1ce7615

View file

@ -112,6 +112,7 @@ static int wired_multicast_membership(int sock, int ifindex,
} }
#ifdef __linux__
static void handle_data(void *ctx, unsigned char *buf, size_t len) static void handle_data(void *ctx, unsigned char *buf, size_t len)
{ {
#ifdef HOSTAPD #ifdef HOSTAPD
@ -197,10 +198,12 @@ static void handle_dhcp(int sock, void *eloop_ctx, void *sock_ctx)
event.new_sta.addr = mac_address; event.new_sta.addr = mac_address;
wpa_supplicant_event(eloop_ctx, EVENT_NEW_STA, &event); wpa_supplicant_event(eloop_ctx, EVENT_NEW_STA, &event);
} }
#endif /* __linux__ */
static int wired_init_sockets(struct wpa_driver_wired_data *drv, u8 *own_addr) static int wired_init_sockets(struct wpa_driver_wired_data *drv, u8 *own_addr)
{ {
#ifdef __linux__
struct ifreq ifr; struct ifreq ifr;
struct sockaddr_ll addr; struct sockaddr_ll addr;
struct sockaddr_in addr2; struct sockaddr_in addr2;
@ -300,6 +303,9 @@ static int wired_init_sockets(struct wpa_driver_wired_data *drv, u8 *own_addr)
} }
return 0; return 0;
#else /* __linux__ */
return -1;
#endif /* __linux__ */
} }