ppplaclayerinterface.h

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

H
90
字号
/* pppLacLayerInterface.h - LAC published interfaces *//* Copyright 2000 - 2005 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------01i,25feb05,ijm moved to radius directory01h,30aug01,md  remove #if 0 comment01g,20jun01,md  correct comments01f,02aug00,md  moves PPP_LAC_INTERFACE structure to pppLacInterface.h01e,02aug00,adb Merging in LAC modifications01d,01aug00,adb Merging with openstack view01c,10jul00,md  changes comment for file name01b,08jul00,bsn merged from the PPP radius-ras branch01a,30jun00,md  created*//*DESCRIPTIONThis interface header file is implemented by the LAC LAYER*/#include "ppp/kstart.h"#include "pfw/pfwInterface.h"#ifndef __INCpppLACLayerInterfaceh#define  __INCpppLACLayerInterfaceh#ifdef __cplusplusextern "C" {#endiftypedef TEST (*SESSION_CALLBACK)(PFW_STACK_OBJ * stackObj);/************************************************************************ LAC_VPN_INTERFACE - interface to authentication attributes** Interface Name: "LAC_VPN_INTERFACE"** This interface is published and made available by the LAC layer.* This interface may be used by any component in the PPP stack to* open incoming vpn session.**/typedef struct LAC_VPN_INTERFACE    {    PFW_INTERFACE_OBJ interfaceObj;        STATUS (*vpnSessionOpen)            (                PFW_PLUGIN_OBJ_STATE * lacLayerState,            enum TUNNEL_SELECTOR selector,                void *pSelectionInfo,                L2TP_PPP_CONFIG *pPPPConfig,                SESSION_CALLBACK                );    } LAC_VPN_INTERFACE;/******************************************************************************************* FP_SESSION_CLOSE_INTERFACE - application interface to notify the PPP application that the* PPP session is closed.  This function pointer is passed through the Tornado Project         * utility.                                                                                           * pStackObj - current Framework Stack Object*/                                                                                                          typedef STATUS (*FP_SESSION_CLOSE_INTERFACE) (PFW_STACK_OBJ *pStackObj);#ifdef __cplusplus}#endif#endif /*  __INCpppLACLayerInterfaceh */

⌨️ 快捷键说明

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