bridge.h

来自「Bridge PNE 3.3 source code, running at m」· C头文件 代码 · 共 48 行

H
48
字号
/* bridge.h - simple learning bridge declarations *//* Copyright 2000-2005 Wind River Systems, Inc. *//*modification history--------------------01f,21jul05,svk  Increment version number for Service Pack 101e,07feb05,svk  Increment version number01d,19jul04,svk  Increment version number01c,07may03,svk  Add support for static mac addresses in bridge station cache01b,17apr03,svk  Implement version number, update copyright01a,27sep00,jhl  created*/#ifndef __INCbridgeh#define __INCbridgeh#ifdef  __cplusplusextern "C" {#endif#define BRIDGE_VERSION	"1.3.1"#define BRIDGE_STATIC_FLAG  0x00000001  /* Station cache entry is static */IMPORT const char * bridgeVersion;IMPORT STATUS   bridgeInit(void);IMPORT STATUS   bridgePortAdd(char* pDevName, int unitNum);IMPORT STATUS   bridgePortRemove(char* pDevName, int unitNum);IMPORT STATUS   bridgeMacAdd(char* pDevName, int unitNum, char* pMacAddr,			     UINT32 flags);IMPORT STATUS   bridgeMacRemove(char* pMacAddr);#ifdef  __cplusplus}#endif#endif  /* __INCbridgeh *//*************************************************************************** * END OF FILE ***************************************************************************/

⌨️ 快捷键说明

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