aboutsummaryrefslogtreecommitdiffstats
path: root/package/hostapd/files/radiotap_iter.h
diff options
context:
space:
mode:
authorMichael Büsch <mb@bu3sch.de>2008-02-17 12:18:33 +0000
committerMichael Büsch <mb@bu3sch.de>2008-02-17 12:18:33 +0000
commita6a1529586530a59e362a18ef7e567a6379f296c (patch)
tree166e50d3d58fa2fe19645f87ead8f7ec48ab681f /package/hostapd/files/radiotap_iter.h
parentd219e0da96750878435ffd96c991620ef658cfde (diff)
downloadmaster-187ad058-a6a1529586530a59e362a18ef7e567a6379f296c.tar.gz
master-187ad058-a6a1529586530a59e362a18ef7e567a6379f296c.tar.bz2
master-187ad058-a6a1529586530a59e362a18ef7e567a6379f296c.zip
hostapd: use patches to add the nl80211 driver instead of copying the files.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10475 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostapd/files/radiotap_iter.h')
-rw-r--r--package/hostapd/files/radiotap_iter.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/package/hostapd/files/radiotap_iter.h b/package/hostapd/files/radiotap_iter.h
deleted file mode 100644
index 92a798a670..0000000000
--- a/package/hostapd/files/radiotap_iter.h
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef __RADIOTAP_ITER_H
-#define __RADIOTAP_ITER_H
-
-#include "radiotap.h"
-
-/* Radiotap header iteration
- * implemented in radiotap.c
- */
-/**
- * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
- * @rtheader: pointer to the radiotap header we are walking through
- * @max_length: length of radiotap header in cpu byte ordering
- * @this_arg_index: IEEE80211_RADIOTAP_... index of current arg
- * @this_arg: pointer to current radiotap arg
- * @arg_index: internal next argument index
- * @arg: internal next argument pointer
- * @next_bitmap: internal pointer to next present u32
- * @bitmap_shifter: internal shifter for curr u32 bitmap, b0 set == arg present
- */
-
-struct ieee80211_radiotap_iterator {
- struct ieee80211_radiotap_header *rtheader;
- int max_length;
- int this_arg_index;
- unsigned char *this_arg;
-
- int arg_index;
- unsigned char *arg;
- uint32_t *next_bitmap;
- uint32_t bitmap_shifter;
-};
-
-extern int ieee80211_radiotap_iterator_init(
- struct ieee80211_radiotap_iterator *iterator,
- struct ieee80211_radiotap_header *radiotap_header,
- int max_length);
-
-extern int ieee80211_radiotap_iterator_next(
- struct ieee80211_radiotap_iterator *iterator);
-
-#endif /* __RADIOTAP_ITER_H */