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

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

?? ixethdb.h

?? u-boot1.3.0的原碼,從配了網(wǎng)絡(luò)驅(qū)動(dòng)和FLASH的驅(qū)動(dòng),并該用ESC竟如
?? H
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
/** @file IxEthDB.h * * @brief this file contains the public API of @ref IxEthDB component * *  * @par * IXP400 SW Release version 2.0 *  * -- Copyright Notice -- *  * @par * Copyright 2001-2005, Intel Corporation. * All rights reserved. *  * @par * 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. Neither the name of the Intel Corporation nor the names of its contributors *    may be used to endorse or promote products derived from this software *    without specific prior written permission. *  * @par * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``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 COPYRIGHT OWNER OR CONTRIBUTORS 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. *  * @par * -- End of Copyright Notice -- * */ #ifndef IxEthDB_H#define IxEthDB_H#include <IxOsBuffMgt.h>#include <IxTypes.h>/** * @defgroup IxEthDB IXP400 Ethernet Database (IxEthDB) API * * @brief ethDB is a library that does provides a MAC address database learning/filtering capability * *@{ */#define INLINE __inline__#define IX_ETH_DB_PRIVATE PRIVATE /* imported from IxTypes.h */#define IX_ETH_DB_PUBLIC PUBLIC/** * @brief port ID => message handler NPE id conversion (0 => NPE_B, 1 => NPE_C) */#define IX_ETH_DB_PORT_ID_TO_NPE(id) (id == 0 ? 1 : (id == 1 ? 2 : (id == 2 ? 0 : -1)))/** * @def IX_ETH_DB_NPE_TO_PORT_ID(npe) * @brief message handler NPE id => port ID conversion (NPE_B => 0, NPE_C => 1) */#define IX_ETH_DB_NPE_TO_PORT_ID(npe) (npe == 0 ? 2 : (npe == 1 ? 0 : (npe == 2 ? 1 : -1)))/* temporary define - won't work for Azusa */#define IX_ETH_DB_PORT_ID_TO_NPE_LOGICAL_ID(id) (IX_ETH_DB_PORT_ID_TO_NPE(id) << 4)#define IX_ETH_DB_NPE_LOGICAL_ID_TO_PORT_ID(id) (IX_ETH_DB_NPE_TO_PORT_ID(id >> 4))/** * @def IX_IEEE803_MAC_ADDRESS_SIZE * @brief The size of the MAC address */#define IX_IEEE803_MAC_ADDRESS_SIZE (6)/** * @def IX_IEEE802_1Q_QOS_PRIORITY_COUNT * @brief Number of QoS priorities defined by IEEE802.1Q */#define IX_IEEE802_1Q_QOS_PRIORITY_COUNT (8)/** * @enum IxEthDBStatus * @brief Ethernet Database API return values */typedef enum /* IxEthDBStatus */{  IX_ETH_DB_SUCCESS = IX_SUCCESS,   /**< Success */  IX_ETH_DB_FAIL = IX_FAIL,         /**< Failure */  IX_ETH_DB_INVALID_PORT,           /**< Invalid port */  IX_ETH_DB_PORT_UNINITIALIZED,     /**< Port not initialized */  IX_ETH_DB_MAC_UNINITIALIZED,      /**< MAC not initialized */  IX_ETH_DB_INVALID_ARG,            /**< Invalid argument */  IX_ETH_DB_NO_SUCH_ADDR,           /**< Address not found for search or delete operations */  IX_ETH_DB_NOMEM,                  /**< Learning database memory full */  IX_ETH_DB_BUSY,                   /**< Learning database cannot complete operation, access temporarily blocked */  IX_ETH_DB_END,                    /**< Database browser passed the end of the record set */  IX_ETH_DB_INVALID_VLAN,           /**< Invalid VLAN ID (valid range is 0..4094, 0 signifies no VLAN membership, used for priority tagged frames) */  IX_ETH_DB_INVALID_PRIORITY,       /**< Invalid QoS priority/traffic class (valid range for QoS priority is 0..7, valid range for traffic class depends on run-time configuration) */  IX_ETH_DB_NO_PERMISSION,          /**< No permission for attempted operation */  IX_ETH_DB_FEATURE_UNAVAILABLE,    /**< Feature not available (or not enabled) */  IX_ETH_DB_INVALID_KEY,            /**< Invalid search key */  IX_ETH_DB_INVALID_RECORD_TYPE     /**< Invalid record type */} IxEthDBStatus;    /** @brief VLAN ID type, valid range is 0..4094, 0 signifying no VLAN membership */typedef UINT32 IxEthDBVlanId;/** @brief 802.1Q VLAN tag, contains 3 bits user priority, 1 bit CFI, 12 bits VLAN ID */typedef UINT32 IxEthDBVlanTag;/** @brief QoS priority/traffic class type, valid range is 0..7, 0 being the lowest */typedef UINT32 IxEthDBPriority;/** @brief Priority mapping table; 0..7 QoS priorities used to index, table contains traffic classes */typedef UINT8 IxEthDBPriorityTable[8];/** @brief A 4096 bit array used to map the complete VLAN ID range */typedef UINT8 IxEthDBVlanSet[512];#define IX_ETH_DB_802_1Q_VLAN_MASK (0xFFF)#define IX_ETH_DB_802_1Q_QOS_MASK  (0x7)#define IX_ETH_DB_802_1Q_MAX_VLAN_ID (0xFFE)/** * @def IX_ETH_DB_SET_VLAN_ID * @brief returns the given 802.1Q tag with the VLAN ID field substituted with the given VLAN ID * * This macro is used to change the VLAN ID in a 802.1Q tag. * * Example:  *  *  tag = IX_ETH_DB_SET_VLAN_ID(tag, 32) * * inserts the VLAN ID "32" in the given tag. */#define IX_ETH_DB_SET_VLAN_ID(vlanTag, vlanID) (((vlanTag) & 0xF000) | ((vlanID) & IX_ETH_DB_802_1Q_VLAN_MASK))/*** @def IX_ETH_DB_GET_VLAN_ID* @brief returns the VLAN ID from the given 802.1Q tag*/#define IX_ETH_DB_GET_VLAN_ID(vlanTag) ((vlanTag) & IX_ETH_DB_802_1Q_VLAN_MASK)#define IX_ETH_DB_GET_QOS_PRIORITY(vlanTag) (((vlanTag) >> 13) & IX_ETH_DB_802_1Q_QOS_MASK)#define IX_ETH_DB_SET_QOS_PRIORITY(vlanTag, priority) (((vlanTag) & 0x1FFF) | (((priority) & IX_ETH_DB_802_1Q_QOS_MASK) << 13))#define IX_ETH_DB_CHECK_VLAN_TAG(vlanTag) { if(((vlanTag & 0xFFFF0000) != 0) || (IX_ETH_DB_GET_VLAN_ID(vlanTag) > 4094)) return IX_ETH_DB_INVALID_VLAN; }#define IX_ETH_DB_CHECK_VLAN_ID(vlanId) { if (vlanId > IX_ETH_DB_802_1Q_MAX_VLAN_ID) return IX_ETH_DB_INVALID_VLAN; }#define IX_IEEE802_1Q_VLAN_TPID (0x8100)    typedef enum{  IX_ETH_DB_UNTAGGED_FRAMES        = 0x1, /**< Accepts untagged frames */  IX_ETH_DB_VLAN_TAGGED_FRAMES     = 0x2, /**< Accepts tagged frames */  IX_ETH_DB_PRIORITY_TAGGED_FRAMES = 0x4, /**< Accepts tagged frames with VLAN ID set to 0 (no VLAN membership) */  IX_ETH_DB_ACCEPT_ALL_FRAMES      =       IX_ETH_DB_UNTAGGED_FRAMES | IX_ETH_DB_VLAN_TAGGED_FRAMES /**< Accepts all the frames */} IxEthDBFrameFilter;typedef enum{  IX_ETH_DB_PASS_THROUGH = 0x1, /**< Leave frame as-is */  IX_ETH_DB_ADD_TAG      = 0x2, /**< Add default port VLAN tag */  IX_ETH_DB_REMOVE_TAG   = 0x3  /**< Remove VLAN tag from frame */} IxEthDBTaggingAction;typedef enum{  IX_ETH_DB_FIREWALL_WHITE_LIST = 0x1,  /**< Firewall operates in white-list mode (MAC address based admission) */  IX_ETH_DB_FIREWALL_BLACK_LIST = 0x2   /**< Firewall operates in black-list mode (MAC address based blocking) */} IxEthDBFirewallMode;  typedef enum{  IX_ETH_DB_FILTERING_RECORD        = 0x01, /**< <table><caption> Filtering record </caption>                                              *      <tr><td> MAC address <td> static/dynamic type <td> age                                              *   </table>                                              */  IX_ETH_DB_FILTERING_VLAN_RECORD   = 0x02, /**< <table><caption> VLAN-enabled filtering record </caption>                                             *      <tr><td> MAC address <td> static/dynamic type <td> age <td> 802.1Q tag                                              *   </table>                                              */  IX_ETH_DB_WIFI_RECORD             = 0x04, /**< <table><caption> WiFi header conversion record </caption>                                             *      <tr><td> MAC address <td> optional gateway MAC address <td>                                              *   </table>                                             */  IX_ETH_DB_FIREWALL_RECORD         = 0x08, /**< <table><caption> Firewall record </caption>                                             *      <tr><td> MAC address                                              *   </table>                                             */  IX_ETH_DB_GATEWAY_RECORD          = 0x10, /**< <i>For internal use only</i> */  IX_ETH_DB_MAX_RECORD_TYPE_INDEX   = 0x10, /**< <i>For internal use only</i> */  IX_ETH_DB_NO_RECORD_TYPE          = 0,    /**< None of the registered record types */  IX_ETH_DB_ALL_FILTERING_RECORDS   = IX_ETH_DB_FILTERING_RECORD | IX_ETH_DB_FILTERING_VLAN_RECORD, /**< All the filtering records */  IX_ETH_DB_ALL_RECORD_TYPES        = IX_ETH_DB_FILTERING_RECORD | IX_ETH_DB_FILTERING_VLAN_RECORD |      IX_ETH_DB_WIFI_RECORD | IX_ETH_DB_FIREWALL_RECORD /**< All the record types registered within EthDB */    } IxEthDBRecordType;  typedef enum{  IX_ETH_DB_LEARNING                = 0x01, /**< Learning feature; enables EthDB to learn MAC address (filtering) records, including 802.1Q enabled records */  IX_ETH_DB_FILTERING               = 0x02, /**< Filtering feature; enables EthDB to communicate with the NPEs for downloading filtering information in the NPEs; depends on the learning feature */  IX_ETH_DB_VLAN_QOS                = 0x04, /**< VLAN/QoS feature; enables EthDB to configure NPEs to operate in VLAN/QoS aware modes */  IX_ETH_DB_FIREWALL                = 0x08, /**< Firewall feature; enables EthDB to configure NPEs to operate in firewall mode, using white/black address lists */  IX_ETH_DB_SPANNING_TREE_PROTOCOL  = 0x10, /**< Spanning tree protocol feature; enables EthDB to configure the NPEs as STP nodes */  IX_ETH_DB_WIFI_HEADER_CONVERSION  = 0x20  /**< WiFi 802.3 to 802.11 header conversion feature; enables EthDB to handle WiFi conversion data */} IxEthDBFeature;  typedef UINT32 IxEthDBProperty;  /**< Property ID type */typedef enum{  IX_ETH_DB_INTEGER_PROPERTY  = 0x1, /**< 4 byte unsigned integer type */  IX_ETH_DB_STRING_PROPERTY   = 0x2, /**< NULL-terminated string type of maximum 255 characters (including the terminator) */  IX_ETH_DB_MAC_ADDR_PROPERTY = 0x3, /**< 6 byte MAC address type */  IX_ETH_DB_BOOL_PROPERTY     = 0x4  /**< 4 byte boolean type; can contain only TRUE and FALSE values */} IxEthDBPropertyType;/* list of supported properties for the IX_ETH_DB_VLAN_QOS feature */#define IX_ETH_DB_QOS_TRAFFIC_CLASS_COUNT_PROPERTY   (0x01)     /**< Property identifying number the supported number of traffic classes */#define IX_ETH_DB_QOS_TRAFFIC_CLASS_0_RX_QUEUE_PROPERTY (0x10)  /**< Rx queue assigned to traffic class 0 */#define IX_ETH_DB_QOS_TRAFFIC_CLASS_1_RX_QUEUE_PROPERTY (0x11)  /**< Rx queue assigned to traffic class 1 */#define IX_ETH_DB_QOS_TRAFFIC_CLASS_2_RX_QUEUE_PROPERTY (0x12)  /**< Rx queue assigned to traffic class 2 */#define IX_ETH_DB_QOS_TRAFFIC_CLASS_3_RX_QUEUE_PROPERTY (0x13)  /**< Rx queue assigned to traffic class 3 */#define IX_ETH_DB_QOS_TRAFFIC_CLASS_4_RX_QUEUE_PROPERTY (0x14)  /**< Rx queue assigned to traffic class 4 */#define IX_ETH_DB_QOS_TRAFFIC_CLASS_5_RX_QUEUE_PROPERTY (0x15)  /**< Rx queue assigned to traffic class 5 */#define IX_ETH_DB_QOS_TRAFFIC_CLASS_6_RX_QUEUE_PROPERTY (0x16)  /**< Rx queue assigned to traffic class 6 */#define IX_ETH_DB_QOS_TRAFFIC_CLASS_7_RX_QUEUE_PROPERTY (0x17)  /**< Rx queue assigned to traffic class 7 *//* private property used by EthAcc to indicate queue configuration complete */#define IX_ETH_DB_QOS_QUEUE_CONFIGURATION_COMPLETE (0x18)      /** * * @brief The IEEE 802.3 Ethernet MAC address structure. *  * The data should be packed with bytes xx:xx:xx:xx:xx:xx  * * @note The data must be packed in network byte order. */typedef struct  {   UINT8 macAddress[IX_IEEE803_MAC_ADDRESS_SIZE];} IxEthDBMacAddr;/** * @ingroup IxEthDB * * @brief Definition of an IXP400 port. */typedef UINT32 IxEthDBPortId;/** * @ingroup IxEthDB * * @brief Port dependency map definition */typedef UINT8 IxEthDBPortMap[32];    /** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBInit(void) * * @brief Initializes the Ethernet learning/filtering database * * @note calling this function multiple times does not constitute an error; * redundant calls will be ignored, returning IX_ETH_DB_SUCCESS * * @retval IX_ETH_DB_SUCCESS initialization was successful * @retval IX_ETH_DB_FAIL initialization failed (OS error) */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBInit(void); /** * @ingroup IxEthDB

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久久久久久久免费樱桃| 亚洲激情自拍偷拍| 在线观看视频一区二区| 日产精品久久久久久久性色| 久久久精品影视| 欧美无砖专区一中文字| 国产精品2024| 秋霞影院一区二区| 亚洲欧美日韩国产综合在线| 精品国产sm最大网站| 欧美日韩一二三区| av在线一区二区三区| 国产乱淫av一区二区三区| 亚洲成人免费影院| 亚洲精品视频在线观看免费| 久久久影视传媒| 日韩欧美在线观看一区二区三区| 91伊人久久大香线蕉| 国产成人在线视频播放| 欧美a级理论片| 亚洲成人先锋电影| 亚洲综合网站在线观看| 国产精品你懂的在线| 久久久久久久久久久电影| 91精品国产综合久久久蜜臀粉嫩| 99久久er热在这里只有精品15 | 国产亚洲福利社区一区| 欧美日韩国产免费| 91视频精品在这里| zzijzzij亚洲日本少妇熟睡| 韩日精品视频一区| 狠狠色综合色综合网络| 免费观看在线综合色| 日产国产高清一区二区三区| 午夜视频在线观看一区| 亚洲宅男天堂在线观看无病毒| 亚洲视频一二三| 亚洲欧洲成人精品av97| 国产精品乱码妇女bbbb| 久久久99精品免费观看不卡| 亚洲精品一区二区三区四区高清| 91精品国产丝袜白色高跟鞋| 欧美另类一区二区三区| 7777精品伊人久久久大香线蕉的| 欧美在线制服丝袜| 欧美久久久影院| 欧美精品免费视频| 日韩欧美一级特黄在线播放| 日韩欧美国产综合一区| 日韩精品一区二区三区在线播放| 69久久夜色精品国产69蝌蚪网| 3d动漫精品啪啪1区2区免费| 91精品国产色综合久久久蜜香臀| 日韩免费高清视频| 久久精品免视看| 国产精品久久毛片a| 亚洲色图一区二区三区| 亚洲一区二区三区视频在线播放| 亚洲高清三级视频| 日韩精品乱码av一区二区| 日本欧美在线看| 国产在线看一区| 懂色av一区二区在线播放| 成人激情视频网站| 91成人国产精品| 欧美裸体一区二区三区| 日韩免费高清视频| 国产精品久久午夜| 性欧美大战久久久久久久久| 精品中文av资源站在线观看| 国产乱一区二区| 一本一本久久a久久精品综合麻豆| 在线视频一区二区三| 日韩免费观看高清完整版在线观看 | 豆国产96在线|亚洲| 91成人在线免费观看| 日韩精品一区二区三区视频播放 | 欧美哺乳videos| 国产精品国产三级国产普通话蜜臀| 一区二区三区资源| 蜜臀国产一区二区三区在线播放| 国产凹凸在线观看一区二区| 在线免费一区三区| 欧美精品一区在线观看| 亚洲视频狠狠干| 精品一区二区在线观看| 一本到不卡精品视频在线观看| 日韩欧美中文字幕制服| 中文字幕一区二区三中文字幕| 日本v片在线高清不卡在线观看| 国产成人av自拍| 欧美欧美午夜aⅴ在线观看| 久久久噜噜噜久久中文字幕色伊伊 | 久久99精品国产.久久久久久| aaa欧美大片| 精品久久久久一区二区国产| 日韩美女视频一区二区 | 从欧美一区二区三区| 欧美人xxxx| 亚洲精品视频一区| 国产91清纯白嫩初高中在线观看| 3d成人动漫网站| 亚洲六月丁香色婷婷综合久久 | 欧美日韩国产色站一区二区三区| 欧美激情一区在线观看| 免费看日韩精品| 欧美日韩一区三区| 一区二区中文视频| 丁香天五香天堂综合| 欧美成人精品1314www| 亚洲一区电影777| 91麻豆福利精品推荐| 久久蜜桃av一区二区天堂| 日本免费新一区视频| 欧美婷婷六月丁香综合色| 国产精品久久久久久亚洲毛片| 国产原创一区二区三区| 日韩一区二区三区观看| 亚洲成人激情av| 91九色最新地址| 亚洲欧美偷拍三级| 99精品久久只有精品| 国产精品久久久久一区二区三区| 国产在线日韩欧美| 亚洲精品在线一区二区| 蜜桃一区二区三区在线| 欧美一卡2卡3卡4卡| 午夜视频一区在线观看| 欧美性生活大片视频| 一区二区三区在线视频观看58| 97超碰欧美中文字幕| |精品福利一区二区三区| 成人网男人的天堂| 中文字幕在线一区二区三区| 国产.精品.日韩.另类.中文.在线.播放| 欧美成人精品3d动漫h| 精品一区二区三区久久久| 26uuu成人网一区二区三区| 麻豆国产一区二区| 日韩欧美中文字幕公布| 美国av一区二区| 精品国精品自拍自在线| 黄色成人免费在线| 国产色一区二区| 成人动漫中文字幕| 亚洲欧美日韩国产成人精品影院 | 国产欧美视频一区二区三区| 国产乱人伦偷精品视频不卡 | 日韩国产成人精品| 欧美一区中文字幕| 国内精品伊人久久久久av影院| 久久久精品国产免费观看同学| 国产精品夜夜嗨| 国产精品久久久久久久久果冻传媒 | 精品一区二区国语对白| 久久香蕉国产线看观看99| 国产成人一级电影| 国产精品久久久久久久久快鸭| 色噜噜偷拍精品综合在线| 亚洲国产日韩在线一区模特| 91精品久久久久久久久99蜜臂| 激情小说亚洲一区| 国产精品白丝在线| 欧美性生交片4| 蜜桃视频免费观看一区| 欧美国产丝袜视频| 欧美色综合网站| 精品无人码麻豆乱码1区2区| 中文字幕在线播放不卡一区| 欧美三级电影网| 极品少妇一区二区三区精品视频 | 精品一区二区在线视频| 国产精品免费久久| 欧美精品成人一区二区三区四区| 国产一区二区在线观看免费| 亚洲欧洲成人自拍| 日韩一级视频免费观看在线| 丁香啪啪综合成人亚洲小说 | 成人免费毛片a| 天涯成人国产亚洲精品一区av| 久久精品亚洲乱码伦伦中文| 一本久久精品一区二区| 美女脱光内衣内裤视频久久影院| 国产精品免费视频网站| 欧美一区二区三区爱爱| 99久久久无码国产精品| 久久精品国内一区二区三区| 国产精品久久久久一区二区三区共| 91精品婷婷国产综合久久竹菊| 丰满白嫩尤物一区二区| 日韩av网站免费在线| 亚洲天堂久久久久久久| 欧美大尺度电影在线| 91麻豆文化传媒在线观看| 精彩视频一区二区三区| 亚洲国产综合人成综合网站| 欧美国产日韩a欧美在线观看| 欧美一区二区视频观看视频| 色噜噜狠狠成人网p站| 国产成人在线观看|