⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mpltaskrxfilterinternal.h

📁 NATIONAL公司DP83816芯片Linux下驱动
💻 H
字号:

//**********************************************************************
//
//  MPLTASKRXFILTERINTERNAL.H
//
//  Copyright (c) 2004 National Semiconductor Corporation.
//  All Rights Reserved
//
//  This is the internal file with definitions meant for Rx Filter Task
//
//**********************************************************************

#ifndef _MPL_RX_INTERNAL_INTERNAL_H
#define _MPL_RX_INTERNAL_INTERNAL_H

typedef struct _MPL_LISTEN_LIST{
   NS_UINT16   refCnt; // Reference count
   // FM: Head pointer for perfect match
} MPL_LISTEN_LIST;

typedef struct MPL_TASK_FILTER {
   
   NS_BOOLEAN enable; // Feature enable tracker

   // Multicast Listen Table
   MPL_LISTEN_LIST mcTable[MAX_FILTER_ROWS][MAX_FILTER_COLS];
   // Unicast Listen Table
   MPL_LISTEN_LIST ucTable[MAX_FILTER_ROWS][MAX_FILTER_COLS];

} MPL_TASK_FILTER;

#endif //_MPL_RX_INTERNAL_INTERNAL_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -