bsd: Fix driver_wired.c build
authorMasashi Honma <honma@ictec.co.jp>
Sat, 9 Jan 2010 08:53:44 +0000 (10:53 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 9 Jan 2010 08:53:44 +0000 (10:53 +0200)
src/drivers/driver_wired.c

index 17e6cd3..8f43192 100644 (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)
 {
 #ifdef HOSTAPD
@@ -197,10 +198,12 @@ static void handle_dhcp(int sock, void *eloop_ctx, void *sock_ctx)
        event.new_sta.addr = mac_address;
        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)
 {
+#ifdef __linux__
        struct ifreq ifr;
        struct sockaddr_ll addr;
        struct sockaddr_in addr2;
@@ -300,6 +303,9 @@ static int wired_init_sockets(struct wpa_driver_wired_data *drv, u8 *own_addr)
        }
 
        return 0;
+#else /* __linux__ */
+       return -1;
+#endif /* __linux__ */
 }