Browse Source

Move iapp.c into src/ap

Jouni Malinen 15 years ago
parent
commit
ad44e244b1
5 changed files with 3 additions and 3 deletions
  1. 1 1
      hostapd/Makefile
  2. 1 1
      hostapd/drv_callbacks.c
  3. 1 1
      hostapd/hostapd.c
  4. 0 0
      src/ap/iapp.c
  5. 0 0
      src/ap/iapp.h

+ 1 - 1
hostapd/Makefile

@@ -125,7 +125,7 @@ CFLAGS += -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX
 
 ifdef CONFIG_IAPP
 CFLAGS += -DCONFIG_IAPP
-OBJS += iapp.o
+OBJS += ../src/ap/iapp.o
 endif
 
 ifdef CONFIG_RSN_PREAUTH

+ 1 - 1
hostapd/drv_callbacks.c

@@ -21,12 +21,12 @@
 #include "ap/sta_info.h"
 #include "ap/accounting.h"
 #include "ap/tkip_countermeasures.h"
+#include "ap/iapp.h"
 #include "ap/ieee802_1x.h"
 #include "ap/wpa.h"
 #include "ap/wmm.h"
 #include "ap/wps_hostapd.h"
 #include "driver_i.h"
-#include "iapp.h"
 
 
 int hostapd_notif_new_sta(struct hostapd_data *hapd, const u8 *addr)

+ 1 - 1
hostapd/hostapd.c

@@ -31,6 +31,7 @@
 #include "ap/accounting.h"
 #include "ap/ap_list.h"
 #include "ap/beacon.h"
+#include "ap/iapp.h"
 #include "ap/ieee802_1x.h"
 #include "ap/ieee802_11_auth.h"
 #include "ap/preauth.h"
@@ -39,7 +40,6 @@
 #include "ap/wpa.h"
 #include "ap/wps_hostapd.h"
 #include "hw_features.h"
-#include "iapp.h"
 #include "driver_i.h"
 #include "ctrl_iface.h"
 

+ 0 - 0
hostapd/iapp.c → src/ap/iapp.c


+ 0 - 0
hostapd/iapp.h → src/ap/iapp.h