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

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

?? plugins-wimax-wimax_compact_dlmap_ie_decoder.c

?? Intel的WIMAX代碼,主要是mac層code
?? C
?? 第 1 頁 / 共 5 頁
字號:
plugins/wimax/wimax_compact_dlmap_ie_decoder.c - Google Code Search這是 
      Google 取自 
      http://anonsvn.wireshark.org/wireshark/trunk 的 
      plugins/wimax/wimax_compact_dlmap_ie_decoder.c 緩存副本

      Google 和網頁作者無關,不對網頁的內容負責。



http://anonsvn.wireshark.org/wireshark/trunk/plugins/wimax/
          AUTHORS
COPYING
ChangeLog
Makefile.am
Makefile.common
Makefile.nmake
README.wimax
crc.c
crc.h
crc_data.c
mac_hd_generic_decoder.c
mac_hd_type1_decoder.c
mac_hd_type2_decoder.c
mac_mgmt_msg_decoder.c
moduleinfo.h
moduleinfo.nmake
msg_aas_beam.c
msg_aas_fbck.c
msg_arq.c
msg_clk_cmp.c
msg_dcd.c
msg_dlmap.c
msg_dreg.c
msg_dsa.c
msg_dsc.c
msg_dsd.c
msg_dsx_rvd.c
msg_fpc.c
msg_pkm.c
msg_pmc.c
msg_prc_lt_ctrl.c
msg_reg_req.c
msg_reg_rsp.c
msg_rep.c
msg_res_cmd.c
msg_rng_req.c
msg_rng_rsp.c
msg_sbc.c
msg_ucd.c
msg_ulmap.c
packet-wmx.c
plugin.rc.in
wimax_bits.h
wimax_cdma_code_decoder.c
wimax_compact_dlmap_ie_decoder.c
wimax_compact_ulmap_ie_decoder.c
wimax_fch_decoder.c
wimax_ffb_decoder.c
wimax_hack_decoder.c
wimax_harq_map_decoder.c
wimax_mac.h
wimax_pdu_decoder.c
wimax_phy_attributes_decoder.c
wimax_tlv.c
wimax_tlv.h
wimax_utils.c
wimax_utils.h
    /* wimax_compact_dlmap_ie_decoder.c
 * WiMax HARQ Map Message decoder
 *
 * Copyright (c) 2007 by Intel Corporation.
 *
 * Author: Lu Pan <lu.pan@intel.com>
 *
 * $Id$
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1999 Gerald Combs
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

/* Include files */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <glib.h>
#include <epan/packet.h>
#include <epan/prefs.h>
#include "crc.h"
#include "wimax_tlv.h"

extern gint proto_wimax;

/* MASKs */
#define MSB_NIBBLE_MASK      0xF0
#define LSB_NIBBLE_MASK      0x0F

#define CID_TYPE_NORMAL      0
#define CID_TYPE_RCID11      1
#define CID_TYPE_RCID7       2
#define CID_TYPE_RCID3       3

/* Global Variables */
guint cid_type = 0;
guint band_amc_subchannel_type = 0;
guint max_logical_bands = 12;
guint num_of_broadcast_symbols = 0;
guint num_of_dl_band_amc_symbols = 0;
guint num_of_ul_band_amc_symbols = 0;
/* from switch HARQ mode extension IE */
guint harq_mode = 0;

/* forward reference */
static guint wimax_compact_dlmap_format_configuration_ie_decoder(proto_tree *tree, packet_info *pinfo, tvbuff_t *tvb, guint offset, guint nibble_offset);
static guint wimax_compact_dlmap_rcid_ie_decoder(proto_tree *tree, packet_info *pinfo, tvbuff_t *tvb, guint offset, guint nibble_offset);
static guint wimax_compact_dlmap_harq_control_ie_decoder(proto_tree *tree, packet_info *pinfo, tvbuff_t *tvb, guint offset, guint nibble_offset);
static guint wimax_compact_dlmap_cqich_control_ie_decoder(proto_tree *tree, packet_info *pinfo, tvbuff_t *tvb, guint offset, guint nibble_offset);
static guint wimax_cdlmap_extension_ie_decoder(proto_tree *tree, packet_info *pinfo, tvbuff_t *tvb, guint offset, guint nibble_offset);
guint wimax_extended_diuc_dependent_ie_decoder(proto_tree *tree, packet_info *pinfo, tvbuff_t *tvb, guint offset, guint nibble_offset);

static gint proto_wimax_compact_dlmap_ie_decoder = -1;
static gint ett_wimax_compact_dlmap_ie_decoder = -1;
static gint ett_wimax_format_configuration_ie_decoder = -1;
static gint ett_wimax_rcid_ie_decoder = -1;
static gint ett_wimax_harq_control_ie_decoder = -1;
static gint ett_wimax_extended_diuc_dependent_ie_decoder = -1;
static gint ett_wimax_cqich_control_ie_decoder = -1;
static gint ett_wimax_extension_type_ie_decoder = -1;

/* Setup protocol subtree array */
static gint *ett[] =
{
	&ett_wimax_compact_dlmap_ie_decoder,
	&ett_wimax_format_configuration_ie_decoder,
	&ett_wimax_rcid_ie_decoder,
	&ett_wimax_harq_control_ie_decoder,
	&ett_wimax_extended_diuc_dependent_ie_decoder,
	&ett_wimax_cqich_control_ie_decoder,
	&ett_wimax_extension_type_ie_decoder,
};

/* New Format Indications */
static const true_false_string tfs_indication =
{
    "New format",
    "No new format"
};

/* Prefixes */
static const true_false_string tfs_prefix =
{
    "Enable HARQ",
    "Temporary Disable HARQ"
};

/* CQICH Indicator */
static const true_false_string tfs_cqich_ind =
{
    "With CQICH Control IE",
    "No CQICH Control IE"
};

/* CID types */
static const value_string vals_cid_types[] =
{
    { 0, "Normal CID" },
    { 1, "RCID11 (default)" },
    { 2, "RCID7" },
    { 3, "RCID3" },
    { 0,  NULL }
};

/* Subchannel Types */
static const value_string vals_subchannel_types[] =
{
    { 0, "Default Type" },
    { 1, "1 bin x 6 symbols Type" },
    { 2, "2 bin x 3 symbols Type" },
    { 3, "3 bin x 2 symbols Type" },
    { 0,  NULL }
};

/* Max Logical Bands */
static const value_string vals_max_logical_bands[] =
{
    { 0, "3 Bands" },
    { 1, "6 Bands" },
    { 2, "12 Bands (default)" },
    { 3, "24 Bands" },
    { 0,  NULL }
};

/* Repetition Coding Indications */
static const value_string rep_msgs[] =
{
    { 0, "No Repetition Coding" },
    { 1, "Repetition Coding of 2 Used" },
    { 2, "Repetition Coding of 4 Used" },
    { 3, "Repetition Coding of 6 Used" },
    { 0,  NULL }
};

/* Repetition Coding Indications */
static const value_string vals_allocation_modes[] =
{
    { 0, "Same Number Of Subchannels For The Selected Bands" },
    { 1, "Different Same Number Of Subchannels For The Selected Bands" },
    { 2, "Total Number Of Subchannels For The Selected Bands Determined by Nsch Code and Nep Code" },
    { 3, "Reserved" },
    { 0,  NULL }
};

/* Masks */
#define DL_MAP_TYPE_MASK      0xE0
#define UL_MAP_APPEND_MASK    0x10
#define SHORTENED_DIUC_MASK   0xE0
#define COMPANDED_SC_MASK     0x1F
#define DL_MAP_TYPE_MASK_1    0x0E
#define UL_MAP_APPEND_MASK_1  0x01
#define SHORTENED_DIUC_MASK_1 0x0E00
#define COMPANDED_SC_MASK_1   0x01F0

/* display indexies */
static gint hf_cdlmap_dl_map_type = -1;
static gint hf_cdlmap_ul_map_append = -1;
static gint hf_cdlmap_reserved = -1;
static gint hf_cdlmap_nep_code = -1;
static gint hf_cdlmap_nsch_code = -1;
static gint hf_cdlmap_num_bands = -1;
static gint hf_cdlmap_band_index = -1;
static gint hf_cdlmap_nb_bitmap = -1;
static gint hf_cdlmap_dl_map_type_1 = -1;
static gint hf_cdlmap_ul_map_append_1 = -1;
static gint hf_cdlmap_reserved_1 = -1;
static gint hf_cdlmap_nep_code_1 = -1;
static gint hf_cdlmap_nsch_code_1 = -1;
static gint hf_cdlmap_num_bands_1 = -1;
//static gint hf_cdlmap_band_index_1 = -1;
static gint hf_cdlmap_nb_bitmap_1 = -1;

static gint hf_cdlmap_shortened_diuc = -1;
static gint hf_cdlmap_companded_sc = -1;
static gint hf_cdlmap_shortened_uiuc = -1;
static gint hf_cdlmap_shortened_diuc_1 = -1;
static gint hf_cdlmap_companded_sc_1 = -1;
static gint hf_cdlmap_shortened_uiuc_1 = -1;

static gint hf_cdlmap_bin_offset = -1;
static gint hf_cdlmap_bin_offset_1 = -1;

static gint hf_cdlmap_diuc_num_of_subchannels = -1;
static gint hf_cdlmap_diuc_num_of_subchannels_1 = -1;
static gint hf_cdlmap_diuc_repetition_coding_indication = -1;
static gint hf_cdlmap_diuc_repetition_coding_indication_1 = -1;
static gint hf_cdlmap_diuc_reserved = -1;
static gint hf_cdlmap_diuc_reserved_1 = -1;

static gint hf_cdlmap_bit_map_length = -1;
static gint hf_cdlmap_bit_map_length_1 = -1;
static gint hf_cdlmap_bit_map = -1;

static gint hf_cdlmap_diuc = -1;
static gint hf_cdlmap_diuc_1 = -1;

static gint hf_cdlmap_allocation_mode = -1;
static gint hf_cdlmap_allocation_mode_rsvd = -1;
static gint hf_cdlmap_num_subchannels = -1;
static gint hf_cdlmap_allocation_mode_1 = -1;
static gint hf_cdlmap_allocation_mode_rsvd_1 = -1;
static gint hf_cdlmap_num_subchannels_1 = -1;

static gint hf_cdlmap_reserved_type = -1;
static gint hf_cdlmap_reserved_type_1 = -1;

/* Compact DL-MAP IE display */
static hf_register_info hf_compact_dlmap[] =
{
	{
		&hf_cdlmap_dl_map_type,
		{"DL-MAP Type", "wimax.compact_dlmap.dl_map_type", FT_UINT8, BASE_DEC, NULL, DL_MAP_TYPE_MASK, "", HFILL}
	},
	{
		&hf_cdlmap_dl_map_type_1,
		{"DL-MAP Type", "wimax.compact_dlmap.dl_map_type", FT_UINT8, BASE_DEC, NULL, DL_MAP_TYPE_MASK_1, "", HFILL}
	},
	{
		&hf_cdlmap_ul_map_append,
		{"UL-MAP Append", "wimax.compact_dlmap.ul_map_append", FT_UINT8, BASE_HEX, NULL, UL_MAP_APPEND_MASK, "", HFILL}
	},
	{
		&hf_cdlmap_ul_map_append_1,
		{"UL-MAP Append", "wimax.compact_dlmap.ul_map_append", FT_UINT8, BASE_HEX, NULL, UL_MAP_APPEND_MASK_1, "", HFILL}
	},
	{
		&hf_cdlmap_reserved,
		{"Reserved", "wimax.compact_dlmap.reserved", FT_UINT8, BASE_HEX, NULL, UL_MAP_APPEND_MASK, "", HFILL}
	},
	{
		&hf_cdlmap_reserved_1,
		{"Reserved", "wimax.compact_dlmap.reserved", FT_UINT8, BASE_HEX, NULL, UL_MAP_APPEND_MASK_1, "", HFILL}
	},
	{
		&hf_cdlmap_nep_code,
		{"Nep Code", "wimax.compact_dlmap.nep_code", FT_UINT8, BASE_HEX, NULL, MSB_NIBBLE_MASK, "", HFILL}
	},
	{
		&hf_cdlmap_nep_code_1,
		{"Nep Code", "wimax.compact_dlmap.nep_code", FT_UINT8, BASE_HEX, NULL, LSB_NIBBLE_MASK, "", HFILL}
	},
	{
		&hf_cdlmap_nsch_code,
		{"Nsch Code", "wimax.compact_dlmap.nsch_code", FT_UINT8, BASE_HEX, NULL, MSB_NIBBLE_MASK, "", HFILL}
	},
	{
		&hf_cdlmap_nsch_code_1,
		{"Nsch Code", "wimax.compact_dlmap.nsch_code", FT_UINT8, BASE_HEX, NULL, LSB_NIBBLE_MASK, "", HFILL}
	},
	{
		&hf_cdlmap_num_bands,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产色产综合产在线视频| 国产精品无遮挡| 丝瓜av网站精品一区二区 | 亚洲欧美日韩人成在线播放| 国产精品一二三四| 久久精品水蜜桃av综合天堂| 国产精一区二区三区| 久久久久久久久久久99999| 精品中文字幕一区二区| 欧美xxxxx牲另类人与| 全部av―极品视觉盛宴亚洲| 日韩午夜在线播放| 激情综合色播五月| 久久综合丝袜日本网| 国产精品亚洲视频| 国产精品美女久久久久久久久 | 亚洲欧洲99久久| 波多野结衣一区二区三区| 国产精品女同一区二区三区| 91小视频免费看| 一区二区三区精品久久久| 欧美日韩精品欧美日韩精品| 午夜精品久久久久久久久久久| 欧美理论片在线| 青青草97国产精品免费观看 | 欧美日韩久久一区二区| 日本欧美一区二区三区乱码| 欧美成人性福生活免费看| 久久99精品国产麻豆婷婷洗澡| 久久综合久久久久88| 成人一区二区三区中文字幕| 亚洲三级在线免费观看| 欧美日韩高清一区二区不卡| 麻豆国产精品一区二区三区 | 最新久久zyz资源站| 在线观看三级视频欧美| 日产精品久久久久久久性色| 日韩精品一区二区三区视频播放 | 狠狠色狠狠色综合日日91app| 国产无遮挡一区二区三区毛片日本| 成年人国产精品| 亚洲一区二区三区自拍| 日韩视频免费观看高清在线视频| 国内国产精品久久| 中文字幕一区二区三区不卡在线| 在线免费观看日本一区| 美女视频黄 久久| 国产无人区一区二区三区| 色婷婷综合激情| 久久电影网电视剧免费观看| 欧美国产一区在线| 欧美天堂亚洲电影院在线播放| 久色婷婷小香蕉久久| 中文字幕一区二区三区在线不卡| 欧美日韩一区中文字幕| 国产成人免费xxxxxxxx| 亚洲午夜激情av| 久久综合色天天久久综合图片| 99视频精品在线| 日韩黄色免费电影| 中文字幕免费一区| 91麻豆精品国产自产在线| 国产高清一区日本| 亚洲永久免费av| 久久久久88色偷偷免费| 欧美亚洲综合网| 国产不卡一区视频| 亚洲午夜激情网页| 国产精品丝袜一区| 欧美一卡2卡三卡4卡5免费| 成人久久18免费网站麻豆| 三级不卡在线观看| 国产精品久久久久久久久免费桃花| 欧美日韩高清在线| 99久久精品国产麻豆演员表| 免费人成在线不卡| 亚洲免费高清视频在线| 久久精品亚洲精品国产欧美| 欧美猛男超大videosgay| 成人app软件下载大全免费| 日本欧美一区二区三区乱码| 亚洲另类中文字| 久久久久久综合| 欧美三级日韩在线| 99久久99久久精品国产片果冻| 九九精品一区二区| 亚洲妇女屁股眼交7| 中文字幕一区二区三| 精品国产乱码久久久久久老虎 | 福利一区在线观看| 午夜精品福利久久久| 亚洲欧美另类在线| 亚洲国产岛国毛片在线| 精品精品国产高清一毛片一天堂| 欧美日韩黄色一区二区| 91免费在线播放| 国产suv一区二区三区88区| 奇米精品一区二区三区在线观看一 | 欧美色综合影院| 成人国产精品免费观看动漫| 精品亚洲成av人在线观看| 午夜国产不卡在线观看视频| 亚洲丝袜美腿综合| 欧美激情综合网| 26uuu欧美日本| 91精品在线免费| 欧美亚洲免费在线一区| 日本高清不卡视频| 波多野结衣亚洲一区| 丁香婷婷综合五月| 国产精品自拍毛片| 激情都市一区二区| 理论片日本一区| 日本美女视频一区二区| 亚洲一区二区三区四区五区中文| 中文字幕在线观看一区二区| 中文字幕av一区二区三区免费看| 久久影音资源网| 精品国产凹凸成av人网站| 日韩写真欧美这视频| 7777女厕盗摄久久久| 88在线观看91蜜桃国自产| 欧美日韩在线精品一区二区三区激情| 色综合天天视频在线观看| 色婷婷国产精品| 91福利国产精品| 欧美视频在线观看一区二区| 欧美视频中文字幕| 欧美日韩高清一区二区不卡| 欧美精品日日鲁夜夜添| 7777精品伊人久久久大香线蕉经典版下载 | 日本91福利区| 美女视频一区在线观看| 日本aⅴ精品一区二区三区 | 99视频在线精品| 91在线看国产| 色偷偷久久一区二区三区| 色天天综合久久久久综合片| 色域天天综合网| 欧美性生活一区| 欧美精品视频www在线观看| 欧美一区二区精美| 精品三级在线观看| 久久九九影视网| 中文字幕中文字幕在线一区| 亚洲麻豆国产自偷在线| 亚洲一区二区在线免费观看视频 | 亚洲一区二区三区三| 亚洲香肠在线观看| 青草国产精品久久久久久| 国模一区二区三区白浆| 成人午夜av影视| 色呦呦网站一区| 欧美一区二区在线免费观看| 欧美mv日韩mv| 欧美韩日一区二区三区四区| 亚洲色图在线视频| 亚洲成人激情综合网| 日韩高清电影一区| 国产乱色国产精品免费视频| 不卡一二三区首页| 欧美视频中文字幕| 精品对白一区国产伦| 亚洲国产成人私人影院tom| 一区二区三区欧美| 奇米一区二区三区| 成人性生交大合| 欧美网站大全在线观看| 欧美一区二区久久| 国产精品美女久久久久久久| 亚洲第一综合色| 久久97超碰国产精品超碰| 成人av先锋影音| 欧美日韩综合色| 久久久午夜精品理论片中文字幕| 国产精品国产三级国产| 天天综合网 天天综合色| 国产二区国产一区在线观看| 91美女在线看| 日韩无一区二区| ㊣最新国产の精品bt伙计久久| 亚洲超碰97人人做人人爱| 国产乱理伦片在线观看夜一区| 99re6这里只有精品视频在线观看| 精品视频999| 国产偷国产偷亚洲高清人白洁| 夜夜亚洲天天久久| 国产一区二区视频在线播放| 色系网站成人免费| 久久奇米777| 亚洲午夜激情网站| 成人动漫一区二区| 91精品婷婷国产综合久久竹菊| 国产精品乱人伦| 麻豆精品蜜桃视频网站| 日本高清不卡视频| 国产日韩欧美电影| 免费人成精品欧美精品| av网站一区二区三区| 日韩片之四级片|