From 87346212c96478c4a77af010d1028f4811435850 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 7 May 2019 11:53:41 -0700 Subject: [PATCH] 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. --- Makefile.am | 2 +- src/{ftutil.c => ft.c} | 2 +- src/{ftutil.h => ft.h} | 0 src/netdev.c | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename src/{ftutil.c => ft.c} (99%) rename src/{ftutil.h => ft.h} (100%) diff --git a/Makefile.am b/Makefile.am index 14b54ef0..62052f39 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 \ diff --git a/src/ftutil.c b/src/ft.c similarity index 99% rename from src/ftutil.c rename to src/ft.c index 2dc1f045..e252cfca 100644 --- a/src/ftutil.c +++ b/src/ft.c @@ -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" /* diff --git a/src/ftutil.h b/src/ft.h similarity index 100% rename from src/ftutil.h rename to src/ft.h diff --git a/src/netdev.c b/src/netdev.c index fda578ac..a103975f 100644 --- a/src/netdev.c +++ b/src/netdev.c @@ -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"