ft: rename ftutil to ft (prep for auth-proto)

Now the 'ft' module, previously ftutil, will be used to drive FT via
the auth-proto virtual class. This renaming is in preparation as
ftutil will become obsolete since all the IE building/processing is
going to be moved out of netdev. The new ft.c module will utilize
the existing ftutil functionality, but since this is now a full blown
auth protocol naming it 'ft' is better suited.
This commit is contained in:
James Prestwood 2019-05-07 11:53:41 -07:00 committed by Denis Kenzior
parent 24ca5a24dd
commit 87346212c9
4 changed files with 3 additions and 3 deletions

View File

@ -194,7 +194,7 @@ src_iwd_SOURCES = src/main.c linux/nl80211.h src/iwd.h src/missing.h \
src/knownnetworks.h \
src/knownnetworks.c \
src/rfkill.h src/rfkill.c \
src/ftutil.h src/ftutil.c \
src/ft.h src/ft.c \
src/ap.h src/ap.c \
src/adhoc.h src/adhoc.c \
src/sae.h src/sae.c \

View File

@ -31,7 +31,7 @@
#include "src/ie.h"
#include "src/handshake.h"
#include "src/crypto.h"
#include "src/ftutil.h"
#include "src/ft.h"
#include "src/mpdu.h"
/*

View File

@ -53,7 +53,7 @@
#include "src/scan.h"
#include "src/netdev.h"
#include "src/wscutil.h"
#include "src/ftutil.h"
#include "src/ft.h"
#include "src/util.h"
#include "src/watchlist.h"
#include "src/sae.h"