atmif.h
来自「摩托罗拉Motolola公司网络处理器C3的示范代码.实现了ATM的AAL2层交」· C头文件 代码 · 共 38 行
H
38 行
/* * Copyright (c) 1998,1999,2000,2001,2002 C-Port Corporation * All Rights Reserved * * The information contained in this file is confidential and proprietary. * Any reproduction, use or disclosure, in whole or in part, of this * program, including any attempt to obtain a human-readable version of this * program, without the express, prior written consent of C-Port * Corporation is strictly prohibited. */#ifndef ATMIF_H#define ATMIF_H#include <dcpBufferSvcs.h>#include <dcpPsSonet.h>#include "atm.h"extern int32u atmRx(void*); /* ATM receive handler */extern int32u atmTx(void*); /* ATM transmit handler for OC-3c */extern int32u atmOc12cTx(void*); /* ATM transmit handler for OC-12c */extern int32u atmSwitchAal5Rx(void*); /* ATM receive handler for Switched and Aal5 circuits */extern int32u atmSwitchAal5Init(void); /* ATM init code for Switched and Aal5 circuits */extern int32u atmMonitor(void*); /* ATM monitor */extern void atmInitialize(void); /* ATM initialize */extern int32u atmPollEvent(void*);extern Boolean atmPortConfigure(KsProcId cpId, PsSonetType sonetRate, void* bits);extern Boolean atmUcodeConfigure(KsProcId cpId, PsSonetType sonetRate);extern BsPoolId poolId;extern TsTableId tableIdEgress;extern TsTableId tableIdVcc;extern TsTableId tableIdVpc;#endif /* ATMIF_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?