Move hlr_auc_gw into hostapd directory
authorJouni Malinen <j@w1.fi>
Sun, 6 Dec 2009 14:33:19 +0000 (16:33 +0200)
committerJouni Malinen <j@w1.fi>
Sun, 6 Dec 2009 14:33:19 +0000 (16:33 +0200)
This is a separate program and is used mainly with hostapd, so it is
better to move this into the hostapd subdirectory now that Milenage
code has already been moved into src/crypto. Milenage was the only
generic component in hlr_auc_gw.

doc/directories.doxygen
doc/doxygen.conf
hostapd/Makefile
hostapd/hlr_auc_gw.c [moved from src/hlr_auc_gw/hlr_auc_gw.c with 100% similarity]
hostapd/hlr_auc_gw.milenage_db [moved from src/hlr_auc_gw/hlr_auc_gw.milenage_db with 100% similarity]
src/Makefile
src/hlr_auc_gw/Makefile [deleted file]

index 453d42a..7465afe 100644 (file)
@@ -44,15 +44,6 @@ driver is used.
 \dir src/eapol_supp EAPOL supplicant
 
 
-\dir src/hlr_auc_gw HLR/AuC gateway module for hostapd
-
-This is an example implementation of HLR/AuC gateway that hostapd can
-use for EAP-SIM and EAP-AKA server access. This example implements an
-internal authentication server using Milenage and GSM-Milenage.
-Alternative design could use this component as a gateway between an
-external HLR/AuC and EAP server code in hostapd.
-
-
 \dir src/l2_packet Layer 2 packet interface
 
 This module defines an interface for layer 2 (link layer) packet
index 67c185b..9c2fdf4 100644 (file)
@@ -580,7 +580,6 @@ INPUT                  = \
        src/eapol_supp \
        src/eap_peer \
        src/eap_server \
-       src/hlr_auc_gw \
        src/l2_packet \
        src/radius \
        src/rsn_supp \
index 42b1749..a607be2 100644 (file)
@@ -726,7 +726,7 @@ ifdef TLS_FUNCS
 LIBS_n += -lcrypto
 endif
 
-HOBJS += ../src/hlr_auc_gw/hlr_auc_gw.o ../src/utils/common.o ../src/utils/wpa_debug.o ../src/utils/os_$(CONFIG_OS).o ../src/utils/wpabuf.o ../src/crypto/milenage.o
+HOBJS += hlr_auc_gw.o ../src/utils/common.o ../src/utils/wpa_debug.o ../src/utils/os_$(CONFIG_OS).o ../src/utils/wpabuf.o ../src/crypto/milenage.o
 HOBJS += ../src/crypto/aes-encblock.o
 ifdef CONFIG_INTERNAL_AES
 HOBJS += ../src/crypto/aes-internal.o
index 8aab4cc..faa5893 100644 (file)
@@ -1,4 +1,4 @@
-SUBDIRS=common crypto drivers hlr_auc_gw eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet radius rsn_supp tls utils wps
+SUBDIRS=common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet radius rsn_supp tls utils wps
 
 all:
        for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d; done
diff --git a/src/hlr_auc_gw/Makefile b/src/hlr_auc_gw/Makefile
deleted file mode 100644 (file)
index cffba62..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-all:
-       @echo Nothing to be made.
-
-clean:
-       for d in $(SUBDIRS); do make -C $$d clean; done
-       rm -f *~ *.o *.d
-
-install:
-       @echo Nothing to be made.