summaryrefslogtreecommitdiff
path: root/usr.sbin/hostapd/hostapd.h
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2005-12-01 02:03:59 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2005-12-01 02:03:59 +0000
commit7777fa4686ac8837e210b415f1dadce7f056d724 (patch)
treee8837094ab1b388207e886cd71f9fae17ac0410f /usr.sbin/hostapd/hostapd.h
parent7a1e1bab720a2f7ab5b7684f0df13dacc6651cc2 (diff)
add configuration option to enable/disable specified iapp subtype handling
Diffstat (limited to 'usr.sbin/hostapd/hostapd.h')
-rw-r--r--usr.sbin/hostapd/hostapd.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/hostapd/hostapd.h b/usr.sbin/hostapd/hostapd.h
index f386bcc47cd..89191156a4f 100644
--- a/usr.sbin/hostapd/hostapd.h
+++ b/usr.sbin/hostapd/hostapd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: hostapd.h,v 1.13 2005/12/01 01:28:19 reyk Exp $ */
+/* $OpenBSD: hostapd.h,v 1.14 2005/12/01 02:03:58 reyk Exp $ */
/*
* Copyright (c) 2004, 2005 Reyk Floeter <reyk@vantronix.net>
@@ -263,6 +263,12 @@ struct hostapd_iapp {
struct sockaddr_in i_addr;
struct sockaddr_in i_broadcast;
struct sockaddr_in i_multicast;
+ u_int8_t i_flags;
+
+#define HOSTAPD_IAPP_F_ADD_NOTIFY 0x01
+#define HOSTAPD_IAPP_F_RADIOTAP 0x02
+#define HOSTAPD_IAPP_F_DEFAULT \
+ (HOSTAPD_IAPP_F_ADD_NOTIFY | HOSTAPD_IAPP_F_RADIOTAP)
};
struct hostapd_config {