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

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? prmib.c

?? Linux Wireless LAN Project 的目標(biāo)是開發(fā)一個(gè)完整的
?? C
字號(hào):
/*    Linux WLAN     The contents of this file are subject to the Mozilla Public    License Version 1.0 (the "License"); you may not use this file    except in compliance with the License. You may obtain a copy of    the License at http://www.mozilla.org/MPL/    Software distributed under the License is distributed on an "AS    IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or    implied. See the License for the specific language governing    rights and limitations under the License.    The initial developer of the original code is Mark S. Mathews    <mark@absoval.com>.  Portions created by Mark S. Mathews    are Copyright (C) 1998 AbsoluteValue Software, Inc.  All Rights Reserved.    */#include <stdlib.h>#include <stdio.h>#include <string.h>#include <sys/socket.h>#include <sys/types.h>#include <sys/ioctl.h>#include <wlan/wlan_compat.h>#include <wlan/am930mib.h>#include <wlan/wlan_ioctl.h>#include "prmib.h"void mac2str( UINT8 *ma, char *str){	sprintf( str, "%02x:%02x:%02x:%02x:%02x:%02x", 		ma[0], ma[1], ma[2], ma[3], ma[4], ma[5]);}void prlocalmib( su_mib_local_t *mib ) {	char tmp[18];	printf("LOCAL MIB:\n");	sprintf( tmp, "0x%02x", mib->frag_disable);	printf("%20s: %-16s  ", "frag_dis", tmp);	sprintf( tmp, "0x%02x", mib->add_plcp_disable);	printf("%20s: %-16s\n", "add_plcp_dis", tmp);	sprintf( tmp, "0x%02x", mib->add_plcp_disable);	printf("%20s: %-16s  ", "add_plcp_disable", tmp);	sprintf( tmp, "0x%02x", mib->mac_hdr_preserve);	printf("%20s: %-16s\n", "mac_hdr_preserve", tmp);	sprintf( tmp, "0x%02x", mib->rx_mgmt_q_enable);	printf("%20s: %-16s  ", "rx_mgmt_q_enable", tmp);	sprintf( tmp, "0x%02x", mib->reassembly_disable);	printf("%20s: %-16s  ", "reassembly_disable", tmp);	sprintf( tmp, "0x%02x", mib->strip_plcp_disable);	printf("%20s: %-16s\n", "strip_plcp_disable", tmp);	sprintf( tmp, "0x%02x", mib->rx_error_disable);	printf("%20s: %-16s  ", "rx_error_disable", tmp);	sprintf( tmp, "0x%02x", mib->power_save_mode_disable);	printf("%20s: %-16s\n", "pwr_save_mode_dis", tmp);	sprintf( tmp, "0x%02x", mib->accept_all_multicast_disable);	printf("%20s: %-16s  ", "accept_all_multi_dis", tmp);	sprintf( tmp, "0x%02x", mib->check_seq_cntl_disable);	printf("%20s: %-16s\n", "chk_seq_cntl_dis", tmp);/*	sprintf( tmp, "0x%02x", mib->loopback);	printf("%20s: %-16s  ", "loopback", tmp);*/ 	sprintf( tmp, "0x%02x", mib->network_mode);	printf("%20s: %-16s\n", "network_mode", tmp);	sprintf( tmp, "0x%02x", mib->pwd_level);	printf("%20s: %-16s  ", "pwd_level", tmp);/*	sprintf( tmp, "0x%02x", mib->phy_type);	printf("%20s: %-16s\n", "phy_type", tmp);*/	sprintf( tmp, "0x%04lx", mib->tx_buffer_offset);	printf("%20s: %-16s  ", "tx_buffer_offset", tmp);	sprintf( tmp, "0x%04lx", mib->tx_buffer_size);	printf("%20s: %-16s\n", "tx_buffer_size", tmp);		sprintf( tmp, "0x%04lx", mib->rx_buffer_offset);	printf("%20s: %-16s  ", "rx_buffer_offset", tmp);	sprintf( tmp, "0x%04lx", mib->rx_buffer_size);	printf("%20s: %-16s\n", "rx_buffer_size", tmp);}void prstatsmib( su_mib_mac_statistics_t *mib ) {	char tmp[18];	printf("STATISTICS MIB:\n");	sprintf( tmp, "%lud",  mib->tx_mpdu_cnt);	printf("%20s: %-16s  ", "tx_mpdu_cnt", tmp);	sprintf( tmp, "%lud", mib->tx_msdu_cnt);	printf("%20s: %-16s\n", "tx_msdu_cnt", tmp);		sprintf( tmp, "%lud", mib->tx_octets_cnt);	printf("%20s: %-16s  ", "tx_octets_cnt", tmp);	sprintf( tmp, "%ud", mib->tx_multicast_cnt);	printf("%20s: %-16s\n", "tx_multicast_cnt", tmp);	sprintf( tmp, "%ud", mib->tx_broadcast_cnt);	printf("%20s: %-16s  ", "tx_broadcast_cnt", tmp);	sprintf( tmp, "%lud", mib->failed_cnt);	printf("%20s: %-16s\n", "failed_cnt", tmp);	sprintf( tmp, "%lud", mib->retry_cnt);	printf("%20s: %-16s  ", "retry_cnt", tmp);	sprintf( tmp, "%lud", mib->multiple_retry_cnt);	printf("%20s: %-16s\n", "multiple_retry_cnt", tmp);	sprintf( tmp, "%lud", mib->frame_dup_cnt);	printf("%20s: %-16s  ", "frame_dup_cnt", tmp);	sprintf( tmp, "%lud", mib->rts_success_cnt);	printf("%20s: %-16s\n", "rts_success_cnt", tmp);	sprintf( tmp, "%lud", mib->rts_failure_cnt);	printf("%20s: %-16s  ", "rts_failure_cnt", tmp);	sprintf( tmp, "%lud", mib->ack_failure_cnt);	printf("%20s: %-16s\n", "ack_failure_cnt", tmp);	sprintf( tmp, "%lud", mib->rx_frame_cnt);	printf("%20s: %-16s  ", "rx_frame_cnt", tmp);	sprintf( tmp, "%lud", mib->rx_octets_cnt);	printf("%20s: %-16s\n", "rx_octets_cnt", tmp);	sprintf( tmp, "%ud", mib->rx_multicast_cnt);	printf("%20s: %-16s  ", "rx_multicast_cnt", tmp);	sprintf( tmp, "%ud", mib->rx_broadcast_cnt);	printf("%20s: %-16s\n", "rx_broadcast_cnt", tmp);	sprintf( tmp, "%lud", mib->fcs_error_cnt);	printf("%20s: %-16s  ", "fcs_error_cnt", tmp);	sprintf( tmp, "%lud", mib->error_cnt);	printf("%20s: %-16s\n", "error_cnt", tmp);}void praddrmib( su_mib_mac_addr_stat_grp_t *mib ){	char	tmp[40];	int		i;	printf("ADDRESS MIB:\n");	mac2str( mib->mac_address, tmp);	printf("%20s: %-16s\n", "mac_address", tmp);	for ( i = 0; i < SUMIB_MAX_GRP_ADDR; i+=2)	{		mac2str( mib->group_addresses[i], tmp);		printf("%17s[%1d]: %-16s  ", "grp_addr", i, tmp);		mac2str( mib->group_addresses[i+1], tmp);		printf("%17s[%1d]: %-16s\n", "grp_addr", i + 1, tmp);	}	sprintf(tmp, "0x%02x", mib->tx_enable_status);	printf("%20s: %-16s\n", "tx_ena_status", tmp);}void prmacmib( su_mib_mac_t *mib ){	char			tmp[80];	printf("MAC MIB:\n");/*	sprintf(tmp, "%ud", mib->rate_factor); 	printf( "%20s: %-16s  ", "rate_factor", tmp);	sprintf(tmp, "%ud", mib->handshake_overhead);	printf( "%20s: %-16s\n", "handshake_overhead", tmp);*/	sprintf(tmp, "%ud", mib->rts_threshold);	printf( "%20s: %-16s  ", "rts_threshold", tmp);	sprintf(tmp, "%ud", mib->cw_max);	printf( "%20s: %-16s\n", "cw_max", tmp);	sprintf(tmp, "%ud", mib->cw_min);	printf("%20s: %-16s  ", "cw_min", tmp);/*	sprintf(tmp, "%ud", mib->cts_time);	printf("%20s: %-16s\n", "cts_time", tmp);*/	sprintf(tmp, "0x%02x", mib->promisc_en);	printf("%20s: %-16s\n", "promiscuous_status", tmp);/*	sprintf(tmp, "%ud", mib->ack_time);	printf("%20s: %-16s  ", "ack_time", tmp);	sprintf(tmp, "%ud", mib->ack_timeout);	printf("%20s: %-16s\n", "ack_timeout", tmp);	sprintf(tmp, "%ud", mib->cts_timeout);	printf("%20s: %-16s  ", "cts_timeout", tmp);*/	sprintf(tmp, "%ud", mib->short_retry_limit);	printf("%20s: %-16s\n", "short_retry_limit", tmp);	sprintf(tmp, "%ud", mib->long_retry_limit);	printf("%20s: %-16s  ", "long_retry_limit", tmp);	sprintf(tmp, "%ud", mib->max_frame_length);	printf("%20s: %-16s\n", "max_frame_length", tmp);	sprintf(tmp, "%ud", mib->fragmentation_threshold);	printf("%20s: %-16s  ", "frag_threshold", tmp);	sprintf(tmp, "%ud", mib->probe_delay);	printf("%20s: %-16s\n", "probe_delay", tmp);	sprintf(tmp, "%ud", mib->min_probe_response_time);	printf("%20s: %-16s  ", "min_probe_resp_time", tmp);	sprintf(tmp, "%ud", mib->max_probe_response_time);	printf("%20s: %-16s\n", "max_probe_resp_time", tmp);	sprintf(tmp, "%lud", mib->max_tx_msdu_lifetime);	printf("%20s: %-16s  ", "max_tx_msdu_lifetime", tmp);	sprintf(tmp, "%lud", mib->max_rx_msdu_lifetime);	printf("%20s: %-16s\n", "max_rx_msdu_lifetime", tmp);	sprintf(tmp, "%ud", mib->sta_basic_rate);	printf("%20s: %-16s\n", "sta_basic_rate", tmp);	strncpy( tmp, &mib->desired_essid[2], mib->desired_essid[1]);	tmp[mib->desired_essid[1]] = '\0';	printf("%20s: %s\n", "desired_essid", tmp);}void prmgmtmib( su_mib_mac_mgmt_t *mib ){	char			tmp[80];	printf("MAC MGMT MIB:\n");	sprintf(tmp, "0x%x", mib->pwr_mgmt_mode);	printf("%20s: %-16s  ", "pwr_mgmt_mode", tmp);	sprintf(tmp, "0x%x", mib->scan_mode);	printf("%20s: %-16s\n", "scan_mode", tmp);	sprintf(tmp, "0x%x", mib->scan_state);	printf("%20s: %-16s  ", "scan_state", tmp);	sprintf(tmp, "0x%x", mib->dtim_period);	printf("%20s: %-16s\n", "dtim_period", tmp);	sprintf(tmp, "0x%x", mib->atim_window);	printf("%20s: %-16s  ", "atim_window", tmp);	sprintf(tmp, "0x%x", mib->beacon_period);	printf("%20s: %-16s\n", "beacon_period", tmp);	sprintf(tmp, "0x%x", mib->passive_scan_duration);	printf("%20s: %-16s  ", "passive_scan_dur", tmp);	sprintf(tmp, "0x%x", mib->listen_interval);	printf("%20s: %-16s\n", "listen_interval", tmp);	sprintf(tmp, "0x%x", mib->med_occupancy_limit);	printf("%20s: %-16s  ", "med_occupancy_limit", tmp);	sprintf(tmp, "0x%x", mib->max_mpdu_time);	printf("%20s: %-16s\n", "max_mpdu_time", tmp);	sprintf(tmp, "0x%x", mib->cfp_max_duration);	printf("%20s: %-16s  ", "cfp_max_duration", tmp);	sprintf(tmp, "0x%x", mib->cfp_rate);	printf("%20s: %-16s\n", "cfp_rate", tmp);	sprintf(tmp, "0x%x", mib->station_id);	printf("%20s: %-16s  ", "station_id", tmp);	mac2str(mib->current_bssid, tmp);	printf("%20s: %-16s\n", "current_bssid", tmp);	strncpy( tmp, &mib->current_essid[2], mib->current_essid[1]);	{	   int i;	   for ( i = 0; i < (WLAN_SSID_MAXLEN + 2); i++ )	      printf("mib->current_essid[%d] = %lu, 0x%02lx, %c\n", i,	              (unsigned long)mib->current_essid[i],	              (unsigned long)mib->current_essid[i],	              (char)mib->current_essid[i]);	}/*	tmp[mib->current_essid[1]] = '\0';	printf("%20s: %s\n", "current_essid", tmp);*/}void prdrvrmib( su_mib_drvr_mac_mgmt_t *mib ){	printf("DRVR MAC MGMT MIB:\n");	printf("	Currently unsupported\n\n");}void prphymib( su_mib_phy_t *mib ){	char tmp[40];	printf("PHY MIB:\n");	sprintf(tmp, "%ud", mib->slot_time);	printf("%20s: %-16s  ", "slot_time", tmp);	sprintf(tmp, "%ud", mib->sifs);	printf("%20s: %-16s\n", "sifs", tmp);	sprintf(tmp, "%ud", mib->mpdu_max);	printf("%20s: %-16s  ", "mpdu_max", tmp); 	sprintf(tmp, "%ud", mib->hop_time);	printf("%20s: %-16s\n", "hop_time", tmp);	sprintf(tmp, "%ud", mib->preamble_length);	printf("%20s: %-16s  ", "preamble_length", tmp); 	sprintf(tmp, "%ud", mib->plcp_hdr_length);	printf("%20s: %-16s\n", "plcp_hdr_length", tmp);	sprintf(tmp, "0x%x", mib->current_reg_domain);			printf("%20s: %-16s\n", "current_reg_domain", tmp);	sprintf(tmp, "0x%02x, 0x%02x, 0x%02x, 0x%02x", 		mib->supported_data_rates[0],		mib->supported_data_rates[1],		mib->supported_data_rates[2],		mib->supported_data_rates[3] );	printf("%20s: %-16s\n", "supp_data_rates", tmp);	sprintf(tmp, "%ud, %ud, %ud, %ud", mib->pwr_up_time[0], 		mib->pwr_up_time[1], mib->pwr_up_time[2], mib->pwr_up_time[3] );	printf("%20s: %-16s\n", "pwr_up_times", tmp);}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99久久精品一区| 欧美日韩卡一卡二| 欧美一区二区在线免费观看| 久久99精品国产麻豆婷婷| 制服丝袜av成人在线看| 国产成人鲁色资源国产91色综 | 麻豆国产欧美日韩综合精品二区| 国产亚洲欧美色| 3atv在线一区二区三区| 日韩电影在线一区二区| 亚洲欧洲制服丝袜| 国产日本欧美一区二区| 欧美一级一级性生活免费录像| 日本在线不卡视频| 亚洲精品乱码久久久久久黑人| 欧美在线看片a免费观看| 亚洲福利视频一区| 亚洲人精品午夜| 欧美男女性生活在线直播观看 | 欧美视频在线观看一区| heyzo一本久久综合| 国产福利一区二区| 激情图片小说一区| 久久99国产精品免费| 2020国产精品久久精品美国| 高清不卡在线观看| 国产高清不卡一区| 国内精品嫩模私拍在线| 久久国产福利国产秒拍| 亚洲成人资源网| 国产日韩欧美麻豆| 91免费精品国自产拍在线不卡| 国内成人免费视频| 韩国视频一区二区| 亚洲黄色录像片| 日韩一级片网址| 欧美日韩成人综合在线一区二区 | 精品成人佐山爱一区二区| 欧美日韩激情在线| 91精品国产综合久久久久| 国产一区二区三区黄视频| 国内精品久久久久影院一蜜桃| 中文字幕一区二区三区四区不卡 | 精品国产乱码久久久久久免费| 国产盗摄精品一区二区三区在线 | 不卡高清视频专区| 91一区一区三区| 在线一区二区三区| 欧美日韩国产综合视频在线观看| 久久国产精品色婷婷| 国产自产v一区二区三区c| 亚洲永久免费av| 日本一区二区久久| 亚洲同性gay激情无套| 亚洲精品国产一区二区三区四区在线 | 欧美在线free| 精品视频在线免费看| 91精品国产乱码久久蜜臀| 日韩欧美国产一区二区在线播放| 欧美一级理论片| 色婷婷综合久久久中文一区二区| 91色porny| 国产成人在线观看| 99久久亚洲一区二区三区青草 | 7777精品伊人久久久大香线蕉最新版 | 亚洲精品欧美在线| 国产日产欧美一区二区视频| 久久久久久久久久久久久夜| 成人免费一区二区三区视频| 首页综合国产亚洲丝袜| 亚洲人xxxx| 国产精品成人免费在线| 久久女同性恋中文字幕| 亚洲欧洲在线观看av| 亚洲成在人线免费| 亚洲乱码精品一二三四区日韩在线 | 欧美伦理电影网| 日本一区二区三区电影| 亚洲欧美一区二区三区久本道91 | 日韩一级完整毛片| 色综合久久中文综合久久97| 成人中文字幕在线| 日本乱码高清不卡字幕| 久久综合九色综合欧美98| 337p亚洲精品色噜噜| 国产日产欧美一区二区视频| 久久综合色鬼综合色| 国产精品麻豆欧美日韩ww| 亚洲一区免费在线观看| 亚洲色图.com| 久久91精品国产91久久小草| 一本一道久久a久久精品| 日韩一区二区在线观看视频播放 | 美日韩一级片在线观看| 午夜欧美视频在线观看| 国产成人在线色| 在线播放91灌醉迷j高跟美女| 欧美国产97人人爽人人喊| 国产亚洲精品久| 婷婷成人综合网| 日产国产高清一区二区三区| 91麻豆国产精品久久| 色呦呦国产精品| 欧美日韩精品欧美日韩精品一 | 亚洲欧洲一区二区三区| 精品亚洲aⅴ乱码一区二区三区| 色婷婷国产精品久久包臀 | 亚洲男人的天堂一区二区| 最新热久久免费视频| 精品制服美女丁香| 8x福利精品第一导航| 精品对白一区国产伦| 日韩国产欧美三级| 欧美视频你懂的| 亚洲乱码中文字幕综合| 不卡一区二区在线| 欧美精品一区二| 日韩国产欧美在线观看| 欧美性猛交xxxx乱大交退制版| 中文字幕在线一区二区三区| 国产乱人伦偷精品视频不卡| 日韩免费电影网站| 美女视频黄久久| 91精品国产麻豆| 欧美激情在线观看视频免费| 极品少妇一区二区| 91麻豆6部合集magnet| 国产精品区一区二区三| 亚洲电影在线免费观看| 另类小说欧美激情| 99久久精品国产一区| 欧美久久久久久久久| 亚洲香蕉伊在人在线观| 欧美性生活久久| 久久看人人爽人人| 亚洲自拍欧美精品| 91福利资源站| 国产亚洲欧美在线| 国产精品1区2区| 国产日韩欧美制服另类| 成人免费毛片app| 欧美一区二区性放荡片| 欧美精品久久一区二区三区| 中文字幕精品综合| 粉嫩一区二区三区性色av| 久久久久国产免费免费 | 成人免费不卡视频| 欧美日韩精品一二三区| 国产精品美女久久久久高潮| www.日韩在线| 亚洲男人的天堂网| 成人午夜av电影| 国产精品初高中害羞小美女文| 91免费版pro下载短视频| 精品国产百合女同互慰| 国产一区二区在线影院| 精品亚洲aⅴ乱码一区二区三区| 99精品国产热久久91蜜凸| 亚洲欧洲综合另类在线| 欧美日韩中文字幕精品| 久久www免费人成看片高清| 国产婷婷精品av在线| 日本vs亚洲vs韩国一区三区二区 | 国产日韩欧美制服另类| 不卡高清视频专区| 26uuuu精品一区二区| 不卡的看片网站| 国产欧美精品一区| 91国产丝袜在线播放| 中文字幕在线观看不卡| 欧美伊人久久大香线蕉综合69| 中文字幕一区在线观看视频| 国产一区啦啦啦在线观看| 亚洲色图欧美在线| 91在线视频播放地址| 天堂在线一区二区| 中文字幕成人av| 高清久久久久久| 国产精品国产三级国产有无不卡 | 日韩一级片网址| 成人av第一页| 日产国产欧美视频一区精品| 欧美群妇大交群中文字幕| 国产在线精品一区二区三区不卡 | 欧美日本一区二区在线观看| 国产一区二区看久久| 亚洲一区二区三区四区的| 91麻豆高清视频| 亚洲一区视频在线| 久久99久久精品| 一区二区三区 在线观看视频 | 一区二区日韩av| 26uuu精品一区二区在线观看| 欧美亚洲综合色| 偷拍亚洲欧洲综合| 综合久久久久久久| 在线一区二区三区四区五区| 一级日本不卡的影视| 久久久精品国产免费观看同学| 91激情五月电影|