亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ieee80211_scan.h

?? Linux下wifi實現
?? H
字號:
/*- * Copyright (c) 2005 Sam Leffler, Errno Consulting * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products *    derived from this software without specific prior written permission. * * Alternatively, this software may be distributed under the terms of the * GNU General Public License ("GPL") version 2 as published by the Free * Software Foundation. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * $Id: ieee80211_scan.h 1441 2006-02-06 16:03:21Z mrenzmann $ */#ifndef _NET80211_IEEE80211_SCAN_H_#define _NET80211_IEEE80211_SCAN_H_#define	IEEE80211_SCAN_MAX	IEEE80211_CHAN_MAXstruct ieee80211_scanner;struct ieee80211_scan_ssid {	int len;					/* length in bytes */	u_int8_t ssid[IEEE80211_NWID_LEN];	/* ssid contents */};#define	IEEE80211_SCAN_MAX_SSID	1struct ieee80211_scan_state {	struct ieee80211vap *ss_vap;	const struct ieee80211_scanner *ss_ops;	/* policy hookup, see below */	void *ss_priv;				/* scanner private state */	u_int16_t ss_flags;#define	IEEE80211_SCAN_NOPICK	0x0001		/* scan only, no selection */#define	IEEE80211_SCAN_ACTIVE	0x0002		/* active scan (probe req) */#define	IEEE80211_SCAN_PICK1ST	0x0004		/* ``hey sailor'' mode */#define	IEEE80211_SCAN_BGSCAN	0x0008		/* bg scan, exit ps at end */#define	IEEE80211_SCAN_ONCE	0x0010		/* do one complete pass */#define	IEEE80211_SCAN_GOTPICK	0x1000		/* got candidate, can stop */	u_int8_t	ss_nssid;			/* # ssid's to probe/match */	struct ieee80211_scan_ssid ss_ssid[IEEE80211_SCAN_MAX_SSID];						/* ssid's to probe/match */						/* ordered channel set */	struct ieee80211_channel *ss_chans[IEEE80211_SCAN_MAX];	u_int16_t ss_next;			/* ix of next chan to scan */	u_int16_t ss_last;			/* ix + 1 of last chan to scan */	unsigned long ss_mindwell;		/* min dwell on channel */	unsigned long ss_maxdwell;		/* max dwell on channel */	u_int ss_duration;			/* used for calling ieee80211_start_scan() */};/* * The upper 16 bits of the flags word is used to communicate * information to the scanning code that is NOT recorded in * ss_flags.  It might be better to split this stuff out into * a separate variable to avoid confusion. */#define	IEEE80211_SCAN_FLUSH	0x10000		/* flush candidate table */#define	IEEE80211_SCAN_NOSSID	0x20000		/* don't update ssid list */#define	IEEE80211_SCAN_USECACHE	0x40000		/* Must use a result from the cache */#define	IEEE80211_SCAN_KEEPMODE	0x80000		/* Must keep the same wireless mode (11a, 11g, or 11at, etc) */struct ieee80211com;void ieee80211_scan_attach(struct ieee80211com *);void ieee80211_scan_detach(struct ieee80211com *);void ieee80211_scan_vattach(struct ieee80211vap *);void ieee80211_scan_vdetach(struct ieee80211vap *);void ieee80211_scan_dump_channels(const struct ieee80211_scan_state *);#define	IEEE80211_SCAN_FOREVER	0x7fffffffint ieee80211_start_scan(struct ieee80211vap *, int, u_int, u_int,	const struct ieee80211_scan_ssid ssids[]);int ieee80211_check_scan(struct ieee80211vap *, int, u_int, u_int,	const struct ieee80211_scan_ssid ssids[],	int (*action)(struct ieee80211vap *, const struct ieee80211_scan_entry *));int ieee80211_bg_scan(struct ieee80211vap *);void ieee80211_cancel_scan(struct ieee80211vap *);int ieee80211_scan_dfs_action(struct ieee80211vap *, const struct ieee80211_scan_entry *);struct ieee80211_scanparams;void ieee80211_add_scan(struct ieee80211vap *, const struct ieee80211_scanparams *,	const struct ieee80211_frame *, int, int, int);void ieee80211_scan_timeout(struct ieee80211com *);void ieee80211_scan_assoc_success(struct ieee80211com *,	const u_int8_t mac[IEEE80211_ADDR_LEN]);enum {	IEEE80211_SCAN_FAIL_TIMEOUT	= 1,	/* no response to mgmt frame */	IEEE80211_SCAN_FAIL_STATUS	= 2	/* negative response to " " */};void ieee80211_scan_assoc_fail(struct ieee80211com *,	const u_int8_t mac[IEEE80211_ADDR_LEN], int);void ieee80211_scan_flush(struct ieee80211com *);struct ieee80211_scan_entry;typedef void ieee80211_scan_iter_func(void *, const struct ieee80211_scan_entry *);void ieee80211_scan_iterate(struct ieee80211com *, ieee80211_scan_iter_func, void *);/* * Parameters supplied when adding/updating an entry in a * scan cache.  Pointer variables should be set to NULL * if no data is available.  Pointer references can be to * local data; any information that is saved will be copied. * All multi-byte values must be in host byte order. */struct ieee80211_scanparams {	u_int16_t capinfo;	/* 802.11 capabilities */	u_int16_t fhdwell;	/* FHSS dwell interval */	u_int8_t chan;		/* */	u_int8_t bchan;	u_int8_t fhindex;	u_int8_t erp;	u_int8_t bintval;	u_int8_t timoff;	u_int8_t *tim;	u_int8_t *tstamp;	u_int8_t *country;	u_int8_t *ssid;	u_int8_t *rates;	u_int8_t *xrates;	u_int8_t *doth;	u_int8_t *wpa;	u_int8_t *rsn;	u_int8_t *wme;	u_int8_t *ath;};/* * Scan cache entry format used when exporting data from a policy * module; this data may be represented some other way internally. */struct ieee80211_scan_entry {	u_int8_t se_macaddr[IEEE80211_ADDR_LEN];	u_int8_t se_bssid[IEEE80211_ADDR_LEN];	u_int8_t se_ssid[2 + IEEE80211_NWID_LEN];	u_int8_t se_rates[2 + IEEE80211_RATE_MAXSIZE];	u_int8_t se_xrates[2 + IEEE80211_RATE_MAXSIZE];	u_int32_t se_rstamp;		/* recv timestamp */	union {		u_int8_t data[8];		u_int64_t tsf;	} se_tstamp;			/* from last rcv'd beacon */	u_int16_t se_intval;		/* beacon interval (host byte order) */	u_int16_t se_capinfo;		/* capabilities (host byte order) */	struct ieee80211_channel *se_chan;/* channel where sta found */	u_int16_t se_timoff;		/* byte offset to TIM ie */	u_int16_t se_fhdwell;		/* FH only (host byte order) */	u_int8_t se_fhindex;		/* FH only */	u_int8_t se_erp;			/* ERP from beacon/probe resp */	int8_t se_rssi;			/* avg'd recv ssi */	u_int8_t se_dtimperiod;		/* DTIM period */	u_int8_t *se_wpa_ie;		/* captured WPA ie */	u_int8_t *se_rsn_ie;		/* captured RSN ie */	u_int8_t *se_wme_ie;		/* captured WME ie */	u_int8_t *se_ath_ie;		/* captured Atheros ie */	u_int se_age;			/* age of entry (0 on create) */};/* * Template for an in-kernel scan policy module. * Modules register with the scanning code and are * typically loaded as needed. */struct ieee80211_scanner {	const char *scan_name;		/* printable name */	int (*scan_attach)(struct ieee80211_scan_state *);	int (*scan_detach)(struct ieee80211_scan_state *);	int (*scan_start)(struct ieee80211_scan_state *, struct ieee80211vap *);	int (*scan_restart)(struct ieee80211_scan_state *, struct ieee80211vap *);	int (*scan_cancel)(struct ieee80211_scan_state *, struct ieee80211vap *);	int (*scan_end)(struct ieee80211_scan_state *, struct ieee80211vap *,		int (*action)(struct ieee80211vap *, const struct ieee80211_scan_entry *),		u_int32_t);	int (*scan_flush)(struct ieee80211_scan_state *);	/* add an entry to the cache */	int (*scan_add)(struct ieee80211_scan_state *,		const struct ieee80211_scanparams *,		const struct ieee80211_frame *, int, int, int);	/* age and/or purge entries in the cache */	void (*scan_age)(struct ieee80211_scan_state *);	/* note that association failed for an entry */	void (*scan_assoc_fail)(struct ieee80211_scan_state *,		const u_int8_t macaddr[IEEE80211_ADDR_LEN], int);	/* note that association succeed for an entry */	void (*scan_assoc_success)(struct ieee80211_scan_state *,		const u_int8_t macaddr[IEEE80211_ADDR_LEN]);	/* iterate over entries in the scan cache */	void (*scan_iterate)(struct ieee80211_scan_state *,		ieee80211_scan_iter_func *, void *);	/* default action to take when found scan match */	int (*scan_default)(struct ieee80211vap *,		const struct ieee80211_scan_entry *);};const struct ieee80211_scanner *ieee80211_scanner_get(enum ieee80211_opmode,	int);void ieee80211_scanner_register(enum ieee80211_opmode,	const struct ieee80211_scanner *);void ieee80211_scanner_unregister(enum ieee80211_opmode,	const struct ieee80211_scanner *);void ieee80211_scanner_unregister_all(const struct ieee80211_scanner *);#endif /* _NET80211_IEEE80211_SCAN_H_ */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色婷婷综合视频在线观看| 久久av老司机精品网站导航| 91精品国产综合久久福利| 久久精品av麻豆的观看方式| 日本一区二区成人| 884aa四虎影成人精品一区| 日韩av一级片| 国产精品午夜在线观看| 欧美日韩精品欧美日韩精品| 国产成人精品综合在线观看| 亚洲妇熟xx妇色黄| 91精品国产综合久久蜜臀| 国产成人aaaa| 美女在线一区二区| 亚洲嫩草精品久久| 欧美成人精品二区三区99精品| 丁香婷婷深情五月亚洲| 亚洲国产乱码最新视频| 日韩精品自拍偷拍| 欧美专区日韩专区| 成人黄色一级视频| 久久精品国产一区二区三 | 日韩三级中文字幕| 99亚偷拍自图区亚洲| 久久成人免费网站| 婷婷久久综合九色综合绿巨人| 国产三级欧美三级日产三级99| 欧美日韩二区三区| 色综合欧美在线| 国产在线国偷精品免费看| 亚洲一区二区三区爽爽爽爽爽| 国产免费成人在线视频| 日韩欧美国产一区在线观看| 91免费在线播放| 国产a久久麻豆| 老司机午夜精品| 亚洲欧美另类图片小说| 欧美国产97人人爽人人喊| 精品av综合导航| 欧美一区二区三区影视| 欧美性大战xxxxx久久久| 不卡在线视频中文字幕| 国产一区二区三区观看| 青青草国产成人av片免费| 亚洲国产精品尤物yw在线观看| 日韩伦理免费电影| 欧美国产精品一区二区| 中文幕一区二区三区久久蜜桃| 久久免费视频色| 久久久久亚洲蜜桃| 2021中文字幕一区亚洲| 欧美成人官网二区| 日韩欧美视频在线| 欧美v国产在线一区二区三区| 欧美一区二区视频网站| 91麻豆精品国产自产在线| 欧美日韩在线不卡| 欧美日韩另类一区| 6080国产精品一区二区| 9191国产精品| 欧洲中文字幕精品| 欧美中文一区二区三区| 精品视频一区三区九区| 欧美视频精品在线| 欧美亚洲综合色| av午夜一区麻豆| 91在线你懂得| 在线观看日韩毛片| 欧美日本在线播放| 欧美一级日韩免费不卡| 欧美成人一区二区三区片免费 | 国产精品一区二区三区99| 国产高清视频一区| 免费观看在线综合| 国产麻豆精品在线| www.日韩av| 在线中文字幕一区二区| 欧美电影影音先锋| 精品国产1区二区| 国产精品萝li| 亚洲成av人片在线| 久久99精品国产麻豆不卡| 国产激情视频一区二区三区欧美| 不卡视频在线看| 欧美性生交片4| 精品国产不卡一区二区三区| 久久久久久久久一| 亚洲日本免费电影| 奇米影视7777精品一区二区| 国产激情一区二区三区| 一本色道**综合亚洲精品蜜桃冫| 欧美日韩三级视频| 久久综合九色综合欧美亚洲| 国产精品免费丝袜| 日韩国产欧美一区二区三区| 国产乱码一区二区三区| 色综合天天综合网天天看片| 欧美理论电影在线| 欧美va日韩va| 亚洲女爱视频在线| 黑人巨大精品欧美黑白配亚洲| 99re热这里只有精品视频| 欧美日韩电影一区| 中文字幕精品一区| 日日夜夜免费精品视频| 国产精品综合二区| 欧美日韩免费电影| 国产精品三级在线观看| 亚洲欧美一区二区三区极速播放| 免费一级片91| 91久久精品午夜一区二区| 欧美tickling挠脚心丨vk| 亚洲免费资源在线播放| 九九热在线视频观看这里只有精品| 国产成人福利片| 欧美高清dvd| 亚洲精品视频免费看| 国产原创一区二区| 欧美日韩亚州综合| 国产欧美精品一区| 日本欧美韩国一区三区| 成人一区二区三区中文字幕| 欧美va在线播放| 九九**精品视频免费播放| 日韩一区二区精品在线观看| 午夜精品免费在线观看| 欧洲亚洲精品在线| 亚洲精品国产无套在线观| 成人黄色在线视频| 国产精品久久久久婷婷| 丁香桃色午夜亚洲一区二区三区| 精品久久国产97色综合| 精品亚洲欧美一区| 久久久99精品免费观看不卡| 国产在线不卡一区| 久久久久久久免费视频了| 国产成人精品三级| 国产精品入口麻豆九色| caoporn国产精品| 亚洲欧洲精品成人久久奇米网| 成人18视频日本| 一区二区三区四区在线免费观看| 91视频在线观看免费| 一区二区三区欧美久久| 欧美日韩aaaaaa| 精品一区二区精品| 国产精品视频九色porn| 99精品欧美一区二区三区综合在线| 日韩理论在线观看| 欧美日韩在线一区二区| 奇米色一区二区| 国产日产亚洲精品系列| 99视频国产精品| 亚洲一区在线播放| 91精品久久久久久蜜臀| 国产美女精品一区二区三区| 国产欧美日韩中文久久| 日本福利一区二区| 日韩激情一二三区| 久久久青草青青国产亚洲免观| av电影天堂一区二区在线| 亚洲午夜av在线| 欧美电影免费观看高清完整版在线观看| 国内精品免费**视频| 中文字幕一区在线观看视频| 欧美三级电影在线观看| 国产真实乱子伦精品视频| 综合亚洲深深色噜噜狠狠网站| 欧美日韩国产在线观看| 精品一区二区影视| 亚洲欧洲日韩女同| 欧美一区欧美二区| 成人激情文学综合网| 午夜欧美电影在线观看| 日韩免费电影网站| 色综合久久66| 紧缚奴在线一区二区三区| 亚洲精品一二三| 亚洲精品一区二区在线观看| 色网综合在线观看| 国内精品国产三级国产a久久| 一区二区三区在线视频观看| 欧美精品一区二| 欧美在线不卡视频| 国产一区二区视频在线| 夜色激情一区二区| 久久久五月婷婷| 欧美电影一区二区| 91麻豆产精品久久久久久| 激情图区综合网| 亚洲自拍偷拍麻豆| 国产欧美一区二区精品性色超碰| 欧美私人免费视频| 成人v精品蜜桃久久一区| 蜜臀av一区二区| 亚洲国产裸拍裸体视频在线观看乱了 | 午夜视频一区在线观看| 国产精品美女久久久久aⅴ| 欧美一区二区三区免费在线看| 色偷偷成人一区二区三区91|