|
xorp
|
00001 // -*- c-basic-offset: 4; tab-width: 8; indent-tabs-mode: t -*- 00002 00003 // Copyright (c) 2007-2009 XORP, Inc. 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, Version 2, June 00007 // 1991 as published by the Free Software Foundation. Redistribution 00008 // and/or modification of this program under the terms of any other 00009 // version of the GNU General Public License is not permitted. 00010 // 00011 // This program is distributed in the hope that it will be useful, but 00012 // WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For more details, 00014 // see the GNU General Public License, Version 2, a copy of which can be 00015 // found in the XORP LICENSE.gpl file. 00016 // 00017 // XORP Inc, 2953 Bunker Hill Lane, Suite 204, Santa Clara, CA 95054, USA; 00018 // http://xorp.net 00019 00020 // $XORP: xorp/fea/data_plane/managers/fea_data_plane_manager_dummy.hh,v 1.10 2008/10/02 21:57:12 bms Exp $ 00021 00022 #ifndef __FEA_DATA_PLANE_MANAGERS_FEA_DATA_PLANE_MANAGER_DUMMY_HH__ 00023 #define __FEA_DATA_PLANE_MANAGERS_FEA_DATA_PLANE_MANAGER_DUMMY_HH__ 00024 00025 #include "fea/fea_data_plane_manager.hh" 00026 00027 00031 class FeaDataPlaneManagerDummy : public FeaDataPlaneManager { 00032 public: 00038 FeaDataPlaneManagerDummy(FeaNode& fea_node); 00039 00043 virtual ~FeaDataPlaneManagerDummy(); 00044 00051 int load_plugins(string& error_msg); 00052 00059 int register_plugins(string& error_msg); 00060 00073 IoLink* allocate_io_link(const IfTree& iftree, 00074 const string& if_name, 00075 const string& vif_name, 00076 uint16_t ether_type, 00077 const string& filter_program); 00078 00088 IoIp* allocate_io_ip(const IfTree& iftree, int family, 00089 uint8_t ip_protocol); 00090 00101 IoTcpUdp* allocate_io_tcpudp(const IfTree& iftree, int family, 00102 bool is_tcp); 00103 00104 private: 00105 }; 00106 00107 #endif // __FEA_DATA_PLANE_MANAGERS_FEA_DATA_PLANE_MANAGER_DUMMY_HH__