00001 // tacppd Application methods for call from tcp/udp server 00002 // (c) Copyright 2000-2005 by tacppd team and contributors 00003 // see http://tacppd.org for more information 00004 // 00005 // This program is free software; you can redistribute it and/or modify 00006 // it under the terms of the GNU General Public License as published by 00007 // the Free Software Foundation; either version 2 of the License, or 00008 // (at your option) any later version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with this program; if not, write to the Free Software 00017 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00018 00019 // all comments which start from /** - this is comments for KDoc 00020 // for classes 00021 // @short [short description of the class] 00022 // @author [class author] 00023 // @version [class version] 00024 // @see [references to other classes or methods] 00025 // for methods 00026 // @see [references] 00027 // @return [sentence describing the return value] 00028 // @exception [list the exeptions that could be thrown] 00029 // @param [name id] [description] - can be multiple 00030 00031 #ifndef __APP_H__ 00032 #define __APP_H__ 00033 00034 #include "global.h" 00035 00036 namespace tacpp { 00037 00038 extern void tacacs_server(int,struct in_addr,int,char*); 00039 extern void radius_server(int,struct in_addr,int,char*); 00040 extern void radacct_server(int,struct in_addr,int,char*); 00041 extern void http_server(int,struct in_addr,int,char*); 00042 #ifdef WITH_XMLRPC 00043 extern void xmlrpc_server(int,struct in_addr,int,char*); 00044 #endif 00045 extern void terminal_server(int,struct in_addr,int,char*); 00046 extern void netflow_server(int,struct in_addr,int,char*); 00047 extern void traps_server(int,struct in_addr,int,char*); 00048 extern void peer_server(int,struct in_addr,int,char*); 00049 extern void bundle_server(int,struct in_addr,int,char*); 00050 extern void snmp_server(int,struct in_addr,int,char*); 00051 extern void tci_server(int,struct in_addr,int,char*); 00052 extern void syslog_server(int,struct in_addr,int,char*); 00053 00054 }; 00055 #endif //__APP_H__