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

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

?? ixethdb.h

?? 友善mini2440嵌入式
?? H
?? 第 1 頁 / 共 5 頁
字號(hào):
 * It has 12 bits and allow the id entification of 4096 (2^12) VLANs. Of the 4096 possible VIDs, a VID of 0  * is used to identify priority frames and value 4095 (FFF) is reserved, so the maximum possible VLAN  * configurations are 4,094. *  * - Reentrant    - no * - ISR Callable - no * * @retval IX_ETH_DB_SUCCESS operation completed successfully * @retval IX_ETH_DB_INVALID_PORT portID is not a valid port identifier * @retval IX_ETH_DB_PORT_UNINITIALIZED port is not initialized * @retval IX_ETH_DB_FEATURE_UNAVAILABLE VLAN/QoS feature is not available or not enabled for the port * @retval IX_ETH_DB_INVALID_VLAN <i>vlanTag</i> argument does not parse to a valid 802.1Q VLAN tag * * @note a VLAN ID value of 0 indicates that the port is not part of any VLAN * @note the value of the cannonical frame indicator (CFI) field is ignored, the  * field being used only in frame tagging operations */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBPortVlanTagSet(IxEthDBPortId portID, IxEthDBVlanTag vlanTag);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBPortVlanTagGet(IxEthDBPortId portID, IxEthDBVlanTag *vlanTag) * * @brief Retrieves the default 802.1Q port VLAN tag for a given port (see also @ref ixEthDBPortVlanTagSet) * * @param portID @ref IxEthDBPortId [in] - ID of the port to retrieve the default VLAN tag from * @param vlanTag @ref IxEthDBVlanTag [out] - location to write the default port 802.1Q VLAN tag to * * - Reentrant    - no * - ISR Callable - no * * @retval IX_ETH_DB_SUCCESS operation completed successfully * @retval IX_ETH_DB_INVALID_PORT portID is not a valid port identifier * @retval IX_ETH_DB_PORT_UNINITIALIZED port is not initialized * @retval IX_ETH_DB_INVALID_ARG invalid vlanTag pointer * @retval IX_ETH_DB_FEATURE_UNAVAILABLE VLAN/QoS feature is not available or not enabled for the port */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBPortVlanTagGet(IxEthDBPortId portID, IxEthDBVlanTag *vlanTag);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBVlanTagSet(IxEthDBMacAddr *macAddr, IxEthDBVlanTag vlanTag) * * @brief Sets the 802.1Q VLAN tag for a database record * * @param macAddr MAC address * @param vlanTag 802.1Q VLAN tag * * This function is used together with @ref ixEthDBVlanTagGet to provide MAC-based VLAN classification support. * Please note that the bridging application must contain specific code to make use of this feature (see below). *  * VLAN tags can be set only in IX_ETH_DB_FILTERING_RECORD or IX_ETH_DB_FILTERING_VLAN_RECORD type records. * If to an IX_ETH_DB_FILTERING_RECORD type record is added a VLAN tag the record type is automatically * changed to IX_ETH_DB_FILTERING_VLAN_RECORD. Once this has occurred the record type will never * revert to a non-VLAN type (unless deleted and re-added). * * Record types used for different purposes (such as IX_ETH_DB_WIFI_RECORD) will be ignored by * this function. * * After using this function to associate a VLAN ID with a MAC address the VLAN ID can be extracted knowing the * MAC address using @ref ixEthDBVlanTagGet. This mechanism can be used to implement MAC-based VLAN classification * if a bridging application searches for the VLAN tag when receiving a frame based on the source MAC address  * (contained in the <i>ixp_ne_src_mac</i> field of the buffer header). * If found in the database, the application can instruct the NPE to tag the frame by writing the VLAN tag * in the <i>ixp_ne_vlan_tci</i> field of the buffer header. This way the NPE will inspect the Egress tagging * rule associated with the given VLAN ID on the Tx port and tag the frame if Egress tagging on the VLAN is * allowed. Additionally, Egress tagging can be forced by setting the <i>ixp_ne_tx_flags.tag_over</i> and  * <i>ixp_ne_tx_flags.tag_mode</i> flags in the buffer header. * * - Reentrant    - no * - ISR Callable - no * * @note this function will <b>not</b> add a filtering record, it can only be used to update an existing one *  * @retval IX_ETH_DB_SUCCESS operation completed successfully * @retval IX_ETH_DB_INVALID_ARG invalid <i>macAddr</i> pointer * @retval IX_ETH_DB_NO_SUCH_ADDR a filtering record with the specified MAC address was not found * @retval IX_ETH_DB_INVALID_VLAN <i>vlanTag</i> argument does not parse to a valid 802.1Q VLAN tag */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBVlanTagSet(IxEthDBMacAddr *macAddr, IxEthDBVlanTag vlanTag);/** * @ingroup IxEthDB * * @fn ixEthDBVlanTagGet(IxEthDBMacAddr *macAddr, IxEthDBVlanTag *vlanTag) * * @brief Retrieves the 802.1Q VLAN tag from a database record given the record MAC address * * @param macAddr MAC address * @param vlanTag location to write the record 802.1Q VLAN tag to * * @note VLAN tags can be retrieved only from IX_ETH_DB_FILTERING_VLAN_RECORD type records *  * This function is used together with ixEthDBVlanTagSet to provide MAC-based VLAN classification support. * Please note that the bridging application must contain specific code to make use of this feature (see @ref ixEthDBVlanTagSet). * * - Reentrant    - no * - ISR Callable - no * * @retval IX_ETH_DB_SUCCESS operation completed successfully * @retval IX_ETH_DB_INVALID_ARG invalid <i>macAddr</i> or <i>vlanTag</i> pointer * @retval IX_ETH_DB_NO_SUCH_ADDR a filtering record with the specified MAC address was not found */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBVlanTagGet(IxEthDBMacAddr *macAddr, IxEthDBVlanTag *vlanTag);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBPortVlanMembershipAdd(IxEthDBPortId portID, IxEthDBVlanId vlanID) * * @brief Adds a VLAN ID to a port's VLAN membership table * * Adding a VLAN ID to a port's VLAN membership table will cause frames tagged with the specified  * VLAN ID to be accepted by the frame filter, if Ingress VLAN membership filtering is enabled. *  * - Reentrant    - no * - ISR Callable - no * * @param portID @ref IxEthDBPortId [in] - ID of the port to add the VLAN ID membership to * @param vlanID @ref IxEthDBVlanId [in] - VLAN ID to be added to the port membership table * * @retval IX_ETH_DB_SUCCESS operation completed successfully * @retval IX_ETH_DB_INVALID_PORT portID is not a valid port identifier * @retval IX_ETH_DB_PORT_UNINITIALIZED port is not initialized * @retval IX_ETH_DB_INVALID_VLAN vlanID is not a valid VLAN ID * @retval IX_ETH_DB_FEATURE_UNAVAILABLE VLAN/QoS feature is not available or not enabled for the port * @retval IX_FAIL unknown OS or NPE communication error * * @note A port's default VLAN ID is always in its own membership table, hence there * is no need to explicitly add it using this function (although it is not an error * to do so) */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBPortVlanMembershipAdd(IxEthDBPortId portID, IxEthDBVlanId vlanID);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBPortVlanMembershipRangeAdd(IxEthDBPortId portID, IxEthDBVlanId vlanIDMin, IxEthDBVlanId vlanIDMax) * * @brief Adds a VLAN ID range to a port's VLAN membership table * * All the VLAN IDs in the specified range will be added to the port VLAN * membership table, including the range start and end VLAN IDs. Tagged frames with * VLAN IDs in the specified range will be accepted by the frame filter, if Ingress VLAN * membership filtering is enabled. * * - Reentrant    - no * - ISR Callable - no * * @param portID @ref IxEthDBPortId [in] - port ID to add the VLAN membership range into * @param vlanIDMin @ref IxEthDBVlanId [in] - start of the VLAN ID range * @param vlanIDMax @ref IxEthDBVlanId [in] - end of the VLAN ID range * * @retval IX_ETH_DB_SUCCESS operation completed successfully * @retval IX_ETH_DB_INVALID_PORT portID is not a valid port identifier * @retval IX_ETH_DB_PORT_UNINITIALIZED port is not initialized * @retval IX_ETH_DB_INVALID_VLAN the specified VLAN IDs are invalid or do not constitute a range * @retval IX_ETH_DB_FEATURE_UNAVAILABLE VLAN/QoS feature is not available or not enabled for the port * @retval IX_FAIL unknown OS or NPE communication error * * @note Is is valid to use the same VLAN ID for both vlanIDMin and vlanIDMax, in which case this * function will behave as @ref ixEthDBPortVlanMembershipAdd * * @note A port's default VLAN ID is always in its own membership table, hence there is no need * to explicitly add it using this function (although it is not an error to do so) */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBPortVlanMembershipRangeAdd(IxEthDBPortId portID, IxEthDBVlanId vlanIDMin, IxEthDBVlanId vlanIDMax);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBPortVlanMembershipRemove(IxEthDBPortId portID, IxEthDBVlanId vlanID) * * @brief Removes a VLAN ID from a port's VLAN membership table * * Frames tagged with a VLAN ID which is not in a port's VLAN membership table * will be discarded by the frame filter, if Ingress membership filtering is enabled. * * - Reentrant    - no * - ISR Callable - no * * @param portID @ref IxEthDBPortId [in] - ID of the port to remove the VLAN ID membership from * @param vlanID @ref IxEthDBVlanId [in] - VLAN ID to be removed from the port membership table * * @retval IX_ETH_DB_SUCCESS operation completed successfully * @retval IX_ETH_DB_INVALID_PORT portID is not a valid port identifier * @retval IX_ETH_DB_INVALID_VLAN vlanID is not a valid VLAN ID * @retval IX_ETH_DB_NO_PERMISSION attempted to remove the default VLAN ID * from the port membership table (vlanID was set to the default port VLAN ID) * @retval IX_ETH_DB_FEATURE_UNAVAILABLE VLAN/QoS feature is not available or not enabled for the port * @retval IX_FAIL unknown OS or NPE communication error * * @note A port's default VLAN ID cannot be removed from the port's membership * table; attempting it will return IX_ETH_DB_NO_PERMISSION */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBPortVlanMembershipRemove(IxEthDBPortId portID, IxEthDBVlanId vlanID);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBPortVlanMembershipRangeRemove(IxEthDBPortId portID, IxEthDBVlanId vlanIDMin, IxEthDBVlanId vlanIDMax) * * @brief Removes a VLAN ID range from a port's VLAN membership table * * All the VLAN IDs in the specified range will be removed from the port VLAN * membership table, including the range start and end VLAN IDs. Tagged frames * with VLAN IDs in the range will be discarded by the frame filter, if Ingress * membership filtering is enabled. * * - Reentrant    - no * - ISR Callable - no * * @param portID @ref IxEthDBPortId [in] - ID of the port to remove the VLAN membership range from * @param vlanIDMin @ref IxEthDBVlanId [in] - start of the VLAN ID range * @param vlanIDMax @ref IxEthDBVlanId [in] - end of the VLAN ID range * * @retval IX_ETH_DB_SUCCESS operation completed successfully * @retval IX_ETH_DB_INVALID_PORT portID is not a valid port identifier * @retval IX_ETH_DB_PORT_UNINITIALIZED port is not initialized * @retval IX_ETH_DB_INVALID_VLAN the specified VLAN IDs are invalid or do not constitute a range * @retval IX_ETH_DB_NO_PERMISSION attempted to remove the default VLAN ID * from the port membership table (both vlanIDMin and vlanIDMax were set to the default port VLAN ID) * @retval IX_ETH_DB_FEATURE_UNAVAILABLE VLAN/QoS feature is not available or not enabled for the port * @retval IX_FAIL unknown OS or NPE communication error * * @note Is is valid to use the same VLAN ID for both vlanIDMin and vlanIDMax, in which case * function will behave as @ref ixEthDBPortVlanMembershipRemove * * @note If the given range overlaps the default port VLAN ID this function * will remove all the VLAN IDs in the range except for the port VLAN ID from its  * own membership table. This situation will be silently dealt with (no error message * will be returned) as long as the range contains more than one value (i.e. at least  * one other value, apart from the default port VLAN ID). If the function is called  * with the vlanIDMin and vlanIDMax parameters both set to the port default VLAN ID, the  * function will infer that an attempt was specifically made to remove the default port  * VLAN ID from the port membership table, in which case the return value will be  * IX_ETH_DB_NO_PERMISSION. */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBPortVlanMembershipRangeRemove(IxEthDBPortId portID, IxEthDBVlanId vlanIDMin, IxEthDBVlanId vlanIDMax);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBPortVlanMembershipSet(IxEthDBPortId portID, IxEthDBVlanSet vlanSet) * * @brief Sets a port's VLAN membership table * * Sets a port's VLAN membership table from a complete VLAN table containing all the possible * 4096 VLAN IDs. The table format is an array containing 4096 bits (512 bytes), where each bit * indicates whether the VLAN at that bit index is in the port's membership list (if set) or * not (unset). * * The bit at index 0, indicating VLAN ID 0, indicates no VLAN membership and therefore no * other bit must be set if bit 0 is set. * * The bit at index 4095 is reserved and should never be set (it will be ignored if set). * * The bit referencing the same VLAN ID as the default port VLAN ID should always be set, as  * the membership list must contain at least the default port VLAN ID. * * - Reentrant    - no * - ISR Callable - no * * @param portID @ref IxEthDBPortId [in] - port ID to set the VLAN membership table to * @param vlanSet @ref IxEthDBVlanSet [in] - pointer to the VLAN membership table *  * @retval IX_ETH_DB_SUCCESS operation completed successfully * @retval IX_ETH_DB_INVALID_PORT portID is not a valid port identifier * @retval IX_ETH_DB_PORT_UNINITIALIZED port is not initialized * @retval IX_ETH_DB_INVALID_ARG invalid <i>vlanSet</i> pointer * @retval IX_ETH_DB_FEATURE_UNAVAILABLE VLAN/QoS feature is not available or not enabled for the port * @retval IX_FAIL unknown OS or NPE communication error */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBPortVlanMembershipSet(IxEthDBPortId portID, IxEthDBVlanSet vlanSet);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBPortVlanMembershipGet(IxEthDBPortId portID, IxEthDBVlanSet vlanSet) * * @brief Retrieves a port's VLAN membership table *

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美视频在线播放| 色婷婷香蕉在线一区二区| 亚洲美女免费在线| 亚洲人成精品久久久久| 国产亚洲短视频| 久久久精品tv| 国产色一区二区| 久久久精品免费观看| 国产片一区二区三区| 国产欧美精品国产国产专区 | 国内精品久久久久影院一蜜桃| 亚洲国产精品久久人人爱| 一区二区高清在线| 亚洲电影在线播放| 美女网站在线免费欧美精品| 精久久久久久久久久久| 国产激情精品久久久第一区二区 | 中文字幕va一区二区三区| 国产精品黄色在线观看| 亚洲私人影院在线观看| 午夜影院在线观看欧美| 久久av中文字幕片| 懂色av中文一区二区三区| 91在线观看美女| 欧美日韩国产bt| 欧美精品一区男女天堂| 中文字幕亚洲区| 天天综合网 天天综合色| 日本亚洲欧美天堂免费| 国产在线视频一区二区三区| 成人小视频在线| 精品视频一区三区九区| 欧美大片在线观看一区| 欧美国产精品专区| 亚洲国产日产av| 国产美女精品在线| 欧美视频完全免费看| 久久久久久久性| 亚洲一区日韩精品中文字幕| 久久99精品久久久久久| 91精品国产色综合久久不卡电影| 久久综合九色综合欧美98| 亚洲日本va午夜在线影院| 蜜桃视频一区二区三区| 在线一区二区三区做爰视频网站| 2023国产精品| 日韩精品一区第一页| 97成人超碰视| 精品入口麻豆88视频| 一级做a爱片久久| 国产激情视频一区二区在线观看| 欧美日韩国产在线观看| 日韩一区日韩二区| 成人小视频在线| 久久久久久久久久久久久夜| 日韩精品电影一区亚洲| 色哟哟国产精品免费观看| 久久精品夜夜夜夜久久| 久久福利资源站| 在线不卡欧美精品一区二区三区| 成人免费在线视频| 福利一区二区在线| 久久精品无码一区二区三区| 另类人妖一区二区av| 5566中文字幕一区二区电影 | 欧美日韩国产大片| 亚洲乱码国产乱码精品精小说 | 欧美日韩国产一级片| 亚洲欧美日韩成人高清在线一区| 国产精品亚洲第一区在线暖暖韩国| 国产日本一区二区| 全国精品久久少妇| 欧美精品亚洲一区二区在线播放| 亚洲免费资源在线播放| 9l国产精品久久久久麻豆| 国产精品女同互慰在线看| 国产尤物一区二区在线| 精品国产精品一区二区夜夜嗨| 五月激情综合色| 884aa四虎影成人精品一区| 日韩黄色免费电影| 欧美精品亚洲一区二区在线播放| 日欧美一区二区| 日韩免费视频线观看| 国产一区二区三区香蕉 | 国产一区二区网址| 久久先锋资源网| 国产精品影视网| 国产丝袜美腿一区二区三区| 国产一区二区视频在线播放| 久久精品在这里| 91丨九色丨黑人外教| 一区二区三区四区高清精品免费观看| 91理论电影在线观看| 一区二区三区资源| 制服丝袜日韩国产| 国产一区不卡视频| 国产精品九色蝌蚪自拍| 欧美午夜一区二区三区 | 欧美大胆一级视频| 经典三级视频一区| 欧美激情一区不卡| 在线欧美日韩国产| 国产毛片一区二区| 一区二区三区在线视频免费观看 | 奇米精品一区二区三区在线观看| 精品少妇一区二区三区视频免付费 | 一区二区三区精品| 日韩视频国产视频| 成人深夜在线观看| 亚洲综合在线观看视频| 精品国产麻豆免费人成网站| 成人精品电影在线观看| 亚洲欧美激情插| 精品欧美久久久| 欧美综合视频在线观看| 国产在线看一区| 亚洲精品videosex极品| 日韩视频123| 91麻豆国产香蕉久久精品| 蜜臀av性久久久久蜜臀aⅴ流畅| 国产女主播在线一区二区| 欧美日韩高清一区二区| 不卡一区中文字幕| 青青草国产精品97视觉盛宴| 国产精品白丝在线| 精品日本一线二线三线不卡 | 亚洲男同性视频| 久久天堂av综合合色蜜桃网 | 天堂av在线一区| 亚洲婷婷在线视频| 久久久久久一级片| 日韩午夜激情视频| 欧美日韩国产小视频在线观看| 99综合电影在线视频| 极品少妇一区二区| 七七婷婷婷婷精品国产| 亚洲国产精品人人做人人爽| 亚洲欧美激情插| 中文字幕一区二区三区色视频| 精品欧美黑人一区二区三区| 欧美精品1区2区3区| 欧美在线啊v一区| 91亚洲午夜精品久久久久久| 成人精品视频一区| 国产福利一区二区三区视频| 国产精品一区久久久久| 精品一区中文字幕| 国产一区二区三区四| 久久草av在线| 麻豆精品国产91久久久久久| 青椒成人免费视频| 免费成人在线观看视频| 久久国产精品99久久久久久老狼 | 久久超碰97中文字幕| 美国一区二区三区在线播放| 日韩av一区二区在线影视| 日本免费新一区视频| 美女尤物国产一区| 精品写真视频在线观看| 国产丶欧美丶日本不卡视频| 成人中文字幕在线| 99久久免费视频.com| 99精品视频中文字幕| 91福利小视频| 正在播放亚洲一区| 久久综合九色综合久久久精品综合 | 亚洲色图欧洲色图婷婷| 亚洲综合久久av| 蜜臀av一区二区在线观看| 九九视频精品免费| 国产盗摄视频一区二区三区| 9久草视频在线视频精品| 在线观看亚洲精品视频| 日韩女优视频免费观看| 国产日韩欧美亚洲| 一区二区三区欧美激情| 日av在线不卡| 国产风韵犹存在线视精品| 91免费观看视频在线| 在线播放欧美女士性生活| xfplay精品久久| 亚洲乱码国产乱码精品精可以看| 亚洲综合区在线| 国产真实乱偷精品视频免| 99久久er热在这里只有精品66| 欧美日韩久久不卡| 久久精品在线观看| 亚洲成人免费在线| 国产精品一区在线观看乱码 | 免费不卡在线观看| 国产成人精品综合在线观看 | 日韩成人伦理电影在线观看| 国模娜娜一区二区三区| 日本精品视频一区二区| 久久精品亚洲麻豆av一区二区| 亚洲自拍另类综合| 成人黄动漫网站免费app| 欧美一区二区网站| 一区二区三区免费观看|