Move hlr_auc_gw into hostapd directory
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.
This commit is contained in:
parent
912321e935
commit
0e574b07f8
7 changed files with 2 additions and 21 deletions
|
@ -44,15 +44,6 @@ driver is used.
|
||||||
\dir src/eapol_supp EAPOL supplicant
|
\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
|
\dir src/l2_packet Layer 2 packet interface
|
||||||
|
|
||||||
This module defines an interface for layer 2 (link layer) packet
|
This module defines an interface for layer 2 (link layer) packet
|
||||||
|
|
|
@ -580,7 +580,6 @@ INPUT = \
|
||||||
src/eapol_supp \
|
src/eapol_supp \
|
||||||
src/eap_peer \
|
src/eap_peer \
|
||||||
src/eap_server \
|
src/eap_server \
|
||||||
src/hlr_auc_gw \
|
|
||||||
src/l2_packet \
|
src/l2_packet \
|
||||||
src/radius \
|
src/radius \
|
||||||
src/rsn_supp \
|
src/rsn_supp \
|
||||||
|
|
|
@ -726,7 +726,7 @@ ifdef TLS_FUNCS
|
||||||
LIBS_n += -lcrypto
|
LIBS_n += -lcrypto
|
||||||
endif
|
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
|
HOBJS += ../src/crypto/aes-encblock.o
|
||||||
ifdef CONFIG_INTERNAL_AES
|
ifdef CONFIG_INTERNAL_AES
|
||||||
HOBJS += ../src/crypto/aes-internal.o
|
HOBJS += ../src/crypto/aes-internal.o
|
||||||
|
|
|
@ -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:
|
all:
|
||||||
for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d; done
|
for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d; done
|
||||||
|
|
|
@ -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.
|
|
Loading…
Reference in a new issue