Author: Vignesh R <vignesh.r@timesys.com>
Date: Mon, 25 Apr 2022 20:53:47 +0530

---
 src/drivers/driver_wext.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/src/drivers/driver_wext.c b/src/drivers/driver_wext.c
index 0f0ad1f..abd74b4 100644
--- a/src/drivers/driver_wext.c
+++ b/src/drivers/driver_wext.c
@@ -32,6 +32,26 @@
 #include "driver.h"
 #include "driver_wext.h"
 
+#ifndef IW_ENCODE_ALG_AES_CMAC
+#define IW_ENCODE_ALG_AES_CMAC	5
+#endif
+
+#ifndef IW_AUTH_MFP_DISABLED
+#define IW_AUTH_MFP_DISABLED	0	/* MFP disabled */
+#endif
+
+#ifndef IW_AUTH_MFP_OPTIONAL
+#define IW_AUTH_MFP_OPTIONAL	1	/* MFP optional */
+#endif
+
+#ifndef IW_AUTH_MFP_REQUIRED
+#define IW_AUTH_MFP_REQUIRED	2	/* MFP required */
+#endif
+
+#ifndef IW_AUTH_MFP
+#define IW_AUTH_MFP		12
+#endif
+
 static int wpa_driver_wext_flush_pmkid(void *priv);
 static int wpa_driver_wext_get_range(void *priv);
 static int wpa_driver_wext_finish_drv_init(struct wpa_driver_wext_data *drv);
-- 
2.25.1

