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

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

?? ixethdb.h

?? 友善mini2440嵌入式
?? H
?? 第 1 頁 / 共 5 頁
字號:
 * Retrieves the complete VLAN membership table from a port, 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 will be set if bit 0 is set. * * The bit at index 4095 is reserved and will not be set (it will be ignored if set). * * The bit referencing the same VLAN ID as the default port VLAN ID will 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 retrieve the VLAN membership table from * @param vlanSet @ref IxEthDBVlanSet [out] - pointer a location where the VLAN membership table will be *                written to  *  * @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 */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBPortVlanMembershipGet(IxEthDBPortId portID, IxEthDBVlanSet vlanSet);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBAcceptableFrameTypeSet(IxEthDBPortId portID, IxEthDBFrameFilter frameFilter) * * @brief Sets a port's acceptable frame type filter * * The acceptable frame type is one (or a combination) of the following values: *    - IX_ETH_DB_ACCEPT_ALL_FRAMES       - accepts all the frames *    - IX_ETH_DB_UNTAGGED_FRAMES         - accepts untagged frames *    - IX_ETH_DB_VLAN_TAGGED_FRAMES      - accepts tagged frames *    - IX_ETH_DB_PRIORITY_TAGGED_FRAMES  - accepts tagged frames with VLAN ID set to 0 (no VLAN membership) * * Except for using the exact values given above only the following combinations are valid: *    - IX_ETH_DB_UNTAGGED_FRAMES | IX_ETH_DB_VLAN_TAGGED_FRAMES *    - IX_ETH_DB_UNTAGGED_FRAMES | IX_ETH_DB_PRIORITY_TAGGED_FRAMES * * Please note that IX_ETH_DB_UNTAGGED_FRAMES | IX_ETH_DB_VLAN_TAGGED_FRAMES is equivalent * to IX_ETH_DB_ACCEPT_ALL_FRAMES. * * - Reentrant    - no * - ISR Callable - no * * @note by default the acceptable frame type filter is set to IX_ETH_DB_ACCEPT_ALL_FRAMES * * @note setting the acceptable frame type to PRIORITY_TAGGED_FRAMES is internally * accomplished by changing the frame filter to VLAN_TAGGED_FRAMES and setting the * VLAN membership list to include only VLAN ID 0; the membership list will need * to be restored manually to an appropriate value if the acceptable frame type * filter is changed back to ACCEPT_ALL_FRAMES or VLAN_TAGGED_FRAMES; failure to do so * will filter all VLAN traffic bar frames tagged with VLAN ID 0 * * @param portID @ref IxEthDBPortId [in] - port ID to set the acceptable frame type filter to * @param frameFilter @ref IxEthDBFrameFilter [in] - acceptable frame type filter *  * @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 frame type filter * @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 ixEthDBAcceptableFrameTypeSet(IxEthDBPortId portID, IxEthDBFrameFilter frameFilter);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBAcceptableFrameTypeGet(IxEthDBPortId portID, IxEthDBFrameFilter *frameFilter) * * @brief Retrieves a port's acceptable frame type filter  * * For a description of the acceptable frame types see @ref ixEthDBAcceptableFrameTypeSet * * - Reentrant    - no * - ISR Callable - no * * @param portID @ref IxEthDBPortId [in] - port ID to retrieve the acceptable frame type filter from * @param frameFilter @ref IxEthDBFrameFilter [out] - location to store the acceptable frame type filter *  * @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>frameFilter</i> pointer argument * @retval IX_ETH_DB_FEATURE_UNAVAILABLE VLAN/QoS feature is not available or not enabled for the port */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBAcceptableFrameTypeGet(IxEthDBPortId portID, IxEthDBFrameFilter *frameFilter);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBPriorityMappingTableSet(IxEthDBPortId portID, IxEthDBPriorityTable priorityTable) * * @brief Sets a port's priority mapping table * * The priority mapping table is an 8x2 table mapping a QoS (user) priority into an internal * traffic class. There are 8 valid QoS priorities (0..7, 0 being the lowest) which can be * mapped into one of the 4 available traffic classes (0..3, 0 being the lowest). * If a custom priority mapping table is not specified using this function the following * default priority table will be used (as per IEEE 802.1Q and IEEE 802.1D): *  * <table border="1"> <caption> QoS traffic classes  </caption> *    <tr> <td> <b> QoS priority <td> <b> Default traffic class <td> <b> Traffic type </b> *    <tr> <td>      0       <td>           1           <td> Best effort, default class for unexpedited traffic *    <tr> <td>      1       <td>           0           <td> Background traffic *    <tr> <td>      2       <td>           0           <td> Spare bandwidth *    <tr> <td>      3       <td>           1           <td> Excellent effort *    <tr> <td>      4       <td>           2           <td> Controlled load *    <tr> <td>      5       <td>           2           <td> Video traffic *    <tr> <td>      6       <td>           3           <td> Voice traffic *    <tr> <td>      7       <td>           3           <td> Network control * </table> * * - Reentrant    - no * - ISR Callable - no * * @param portID @ref IxEthDBPortId [in] - port ID of the port to set the priority mapping table to * @param priorityTable @ref IxEthDBPriorityTable [in] - location of the user priority table * * @note The provided table will be copied into internal data structures in EthDB and  * can be deallocated by the called after this function has completed its execution, if * so desired * * @warning The number of available traffic classes differs depending on the NPE images * and queue configuration. Check IxEthDBQoS.h for up-to-date information on the availability of * traffic classes. Note that specifiying a traffic class in the priority map which exceeds * the system availability will produce an IX_ETH_DB_INVALID_PRIORITY return error code and no * priority will be remapped. *  * @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>priorityTable</i> pointer * @retval IX_ETH_DB_INVALID_PRIORITY at least one priority value exceeds * the current number of available traffic classes * @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 ixEthDBPriorityMappingTableSet(IxEthDBPortId portID, IxEthDBPriorityTable priorityTable);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBPriorityMappingTableGet(IxEthDBPortId portID, IxEthDBPriorityTable priorityTable) * * @brief Retrieves a port's priority mapping table * * The priority mapping table for the given port will be copied in the location * specified by the caller using "priorityTable" * * - Reentrant    - no * - ISR Callable - no * * @param portID ID @ref IxEthDBPortId [in] - of the port to retrieve the priority mapping table from * @param priorityTable @ref IxEthDBPriorityTable [out] - pointer to a user specified location where the table will be copied to * * @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 priorityTable pointer * @retval IX_ETH_DB_FEATURE_UNAVAILABLE VLAN/QoS feature is not available or not enabled for the port */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBPriorityMappingTableGet(IxEthDBPortId portID, IxEthDBPriorityTable priorityTable);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBPriorityMappingClassSet(IxEthDBPortId portID, IxEthDBPriority userPriority, IxEthDBPriority trafficClass) * * @brief Sets one QoS/user priority => traffic class mapping in a port's priority mapping table * * This function establishes a mapping between a user (QoS) priority and an internal traffic class. * The mapping will be saved in the port's priority mapping table. Use this function when not all * the QoS priorities need remapping (see also @ref ixEthDBPriorityMappingTableSet) * * - Reentrant    - no * - ISR Callable - no * * @param portID @ref IxEthDBPortId [in] - ID of the port to set the mapping to * @param userPriority @ref IxEthDBPriority [in] - user (QoS) priority, between 0 and 7 (0 being the lowest) * @param trafficClass @ref IxEthDBPriority [in] - internal traffic class, between 0 and 3 (0 being the lowest) * * @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_PRIORITY <i>userPriority</i> out of range or * <i>trafficClass</i> is beyond the number of currently available traffic classes * @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 ixEthDBPriorityMappingClassSet(IxEthDBPortId portID, IxEthDBPriority userPriority, IxEthDBPriority trafficClass);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBPriorityMappingClassGet(IxEthDBPortId portID, IxEthDBPriority userPriority, IxEthDBPriority *trafficClass) * * @brief Retrieves one QoS/user priority => traffic class mapping in a port's priority mapping table * * This function retrieves the internal traffic class associated with a QoS (user) priority from a given * port's priority mapping table. Use this function when not all the QoS priority mappings are  * required (see also @ref ixEthDBPriorityMappingTableGet) * * - Reentrant    - no * - ISR Callable - no * * @param portID @ref IxEthDBPortId [in] - ID of the port to set the mapping to * @param userPriority @ref IxEthDBPriority [in] - user (QoS) priority, between 0 and 7 (0 being the lowest) * @param trafficClass @ref IxEthDBPriority [out] - location to write the corresponding internal traffic class to * * @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_PRIORITY invalid userPriority value (out of range) * @retval IX_ETH_DB_FEATURE_UNAVAILABLE VLAN/QoS feature is not available or not enabled for the port * @retval IX_ETH_DB_INVALID_ARG invalid <i>trafficClass</i> pointer argument */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBPriorityMappingClassGet(IxEthDBPortId portID, IxEthDBPriority userPriority, IxEthDBPriority *trafficClass);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBEgressVlanEntryTaggingEnabledSet(IxEthDBPortId portID, IxEthDBVlanId vlanID, BOOL enabled) * * @brief Enables or disables Egress VLAN tagging for a port and a given VLAN * * This function enables or disables Egress VLAN tagging for the given port and VLAN ID. * If the VLAN tagging for a certain VLAN ID is enabled then all the frames to be * transmitted on the given port tagged with the same VLAN ID will be transmitted in a tagged format. * If tagging is not enabled for the given VLAN ID, the VLAN tag from the frames matching * this VLAN ID will be removed (the frames will be untagged). * * VLAN ID 4095 is reserved and should never be used with this function. * VLAN ID 0 has the special meaning of "No VLAN membership" and it is used in this * context to allow the port to send priority-tagged frames or not. * * By default, no Egress VLAN tagging is enabled on any port. * * - Reentrant    - no * - ISR Callable - no * * @param portID @ref IxEthDBPortId [in] - ID of the port to enable or disable the VLAN ID Egress tagging on * @param vlanID @ref IxEthDBVlanId [in] - VLAN ID to be matched against outgoing frames * @param enabled BOOL [in] - TRUE to enable Egress VLAN tagging on the port and given VLAN, and *                FALSE to disable Egress VLAN tagging * * @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 invalid VLAN ID (out of 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 */IX_ETH_DB_PUBLIC IxEthDBStatus ixEthDBEgressVlanEntryTaggingEnabledSet(IxEthDBPortId portID, IxEthDBVlanId vlanID, BOOL enabled);/** * @ingroup IxEthDB * * @fn IxEthDBStatus ixEthDBEgressVlanEntryTaggingEnabledGet(IxEthDBPortId portID, IxEthDBVlanId vlanID, BOOL *enabled) * * @brief Retrieves the Egress VLAN tagging enabling status for a port and VLAN ID * * @param portID [in] - ID of the port to extract the Egress VLAN ID tagging status from * @param vlanID VLAN [in] - ID whose tagging status is to be extracted * @param enabled [in] - user-specifed location where the status is copied to; following * the successfull execution of this function the value will be TRUE if Egress VLAN  * tagging is enabled for the given port and VLAN ID, and FALSE otherwise                                                  * * - Reentrant    - no * - ISR Callable - no * * @see ixEthDBEgressVlanEntryTaggingEnabledGet * * @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 invalid VLAN ID (o

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91在线观看美女| av资源网一区| 性久久久久久久| 最新中文字幕一区二区三区| 中文字幕成人在线观看| 国产欧美一区在线| 国产精品免费久久| 中文字幕欧美激情| 亚洲免费观看高清完整版在线 | 久久久久国产成人精品亚洲午夜| 欧美精品电影在线播放| 91精品国产综合久久精品app| 欧美日韩国产一区二区三区地区| 欧美日韩国产bt| 欧美sm极限捆绑bd| 国产亚洲一区字幕| 亚洲欧美综合另类在线卡通| 亚洲免费三区一区二区| 亚洲高清在线视频| 美腿丝袜亚洲综合| 成人动漫在线一区| 欧美视频在线播放| 精品国产sm最大网站免费看| 亚洲国产精品成人久久综合一区 | 色综合天天做天天爱| 91久久精品一区二区三| 欧美日本国产视频| 26uuu成人网一区二区三区| 国产欧美日韩综合精品一区二区| 国产精品美女久久久久久| 亚洲精品网站在线观看| 亚洲国产欧美一区二区三区丁香婷| 午夜久久久影院| 高清在线不卡av| 欧美日韩一区在线| 久久久精品黄色| 亚洲电影第三页| 成人黄色小视频| 欧美二区乱c少妇| 国产偷国产偷精品高清尤物| 亚洲欧美日本在线| 美女一区二区三区| 91免费视频网址| 精品久久久久久最新网址| 国产精品久线观看视频| 日本中文字幕一区二区视频| 日韩综合一区二区| 欧美麻豆精品久久久久久| av在线这里只有精品| 欧美一区二区三区在线观看| 亚洲欧美在线视频| 97se亚洲国产综合自在线| 欧美乱妇一区二区三区不卡视频 | 久久99精品国产麻豆不卡| 99久久精品久久久久久清纯| 欧美成人三级在线| 亚洲国产综合91精品麻豆| 国产成人av电影在线播放| 日韩一区二区三区在线| 18成人在线观看| 麻豆极品一区二区三区| 欧美日韩日日骚| 亚洲精品国产a久久久久久| 粉嫩av一区二区三区粉嫩| 日韩免费高清视频| 日产欧产美韩系列久久99| 欧美四级电影网| 一区二区三区精密机械公司| 91小宝寻花一区二区三区| 欧美国产日韩精品免费观看| 国产精一区二区三区| 欧美精品一区男女天堂| 欧美aaaaaa午夜精品| 欧美一区二区女人| 日韩国产在线一| 欧美一区二区二区| 日韩激情一二三区| 91精品国产91久久久久久一区二区| 亚洲成人福利片| 欧美日韩国产精选| 喷白浆一区二区| 26uuu精品一区二区在线观看| 麻豆91在线看| 久久久三级国产网站| 国产99一区视频免费| 国产精品入口麻豆九色| 99久久伊人久久99| 亚洲精品成人在线| 欧美精品aⅴ在线视频| 美国十次综合导航| 久久婷婷国产综合国色天香| 国产mv日韩mv欧美| 亚洲精品乱码久久久久久 | 久久精品视频免费观看| 韩日av一区二区| 国产精品网站导航| 99精品国产99久久久久久白柏| 亚洲区小说区图片区qvod| 色播五月激情综合网| 香蕉影视欧美成人| 欧美mv日韩mv国产| 成人av网址在线观看| 亚洲欧美区自拍先锋| 欧美丰满嫩嫩电影| 国产成人超碰人人澡人人澡| 亚洲欧美日韩中文播放| 91麻豆精品国产91久久久久| 国产一区二区三区黄视频 | 国产精品996| 国产精品久久久久aaaa樱花| 欧美日韩一区二区在线观看| 蜜桃精品在线观看| 中文字幕在线观看一区二区| 欧美色综合影院| 韩国成人福利片在线播放| 中文字幕一区二区三区在线不卡 | 一区二区欧美国产| 欧美岛国在线观看| 91年精品国产| 国产呦精品一区二区三区网站| 亚洲成人免费看| 国产精品灌醉下药二区| 欧美一区中文字幕| 91精品福利在线| 国产成人综合视频| 久久国产尿小便嘘嘘尿| 亚洲乱码精品一二三四区日韩在线| 欧美大片拔萝卜| 欧美日韩黄色影视| 97成人超碰视| 懂色av一区二区三区免费观看| 亚洲精品中文在线| 国产精品短视频| 久久九九久久九九| 日韩视频在线你懂得| 欧美视频一区二区三区四区| 丰满少妇在线播放bd日韩电影| 狠狠色丁香婷婷综合| 午夜精品久久久久久久| 亚洲精品成人悠悠色影视| 中文字幕佐山爱一区二区免费| 久久嫩草精品久久久久| 日韩午夜精品电影| 91精品国产一区二区三区香蕉| 91精品1区2区| 色国产综合视频| 欧美xxxxxxxxx| 日韩一区二区三区精品视频| 精品视频1区2区| 欧美日韩在线播放三区| 欧美在线免费观看亚洲| 欧美一区永久视频免费观看| 国产精品一品视频| 亚洲丝袜精品丝袜在线| 看电影不卡的网站| jlzzjlzz国产精品久久| 国产女主播视频一区二区| 韩国av一区二区三区| 色老综合老女人久久久| 91老师片黄在线观看| 欧美日韩国产一区二区三区地区| 麻豆freexxxx性91精品| 久久99日本精品| 国产精品一区二区久久不卡 | 欧美日韩中文精品| 欧美日韩中文国产| 日韩一区二区三区视频在线| 欧美成人三级在线| 国产精品久久午夜| 亚洲激情欧美激情| 日韩精品成人一区二区在线| 麻豆精品一区二区三区| 国产一区二区导航在线播放| 成人精品国产一区二区4080| 色老综合老女人久久久| 91麻豆精品国产自产在线观看一区| 欧美一级一区二区| 国产午夜亚洲精品不卡| 亚洲欧美日韩一区二区| 天天射综合影视| 国产精品亚洲人在线观看| k8久久久一区二区三区| 欧美影院一区二区| 精品精品欲导航| 自拍av一区二区三区| 日韩av电影免费观看高清完整版在线观看 | 日韩欧美一区二区在线视频| 日本一区二区视频在线观看| 伊人色综合久久天天| 狠狠色丁香九九婷婷综合五月| 99久久婷婷国产综合精品| 91精品国产综合久久蜜臀| 国产精品卡一卡二| 日本不卡视频在线| 91香蕉视频污在线| 久久久久青草大香线综合精品| 亚洲美女区一区| 国产乱色国产精品免费视频| 欧洲av在线精品| 国产日韩三级在线|