|
xorp
|
00001 // -*- c-basic-offset: 4; tab-width: 8; indent-tabs-mode: t -*- 00002 00003 // Copyright (c) 2007-2011 XORP, Inc and Others 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/ifconfig/ifconfig_vlan_get_linux.hh,v 1.5 2008/10/02 21:57:09 bms Exp $ 00021 00022 #ifndef __FEA_DATA_PLANE_IFCONFIG_IFCONFIG_VLAN_GET_LINUX_HH__ 00023 #define __FEA_DATA_PLANE_IFCONFIG_IFCONFIG_VLAN_GET_LINUX_HH__ 00024 00025 #include "fea/ifconfig_vlan_get.hh" 00026 00027 00028 class IfConfigVlanGetLinux : public IfConfigVlanGet { 00029 public: 00036 IfConfigVlanGetLinux(FeaDataPlaneManager& fea_data_plane_manager, bool is_dummy); 00037 00041 virtual ~IfConfigVlanGetLinux(); 00042 00049 virtual int start(string& error_msg); 00050 00057 virtual int stop(string& error_msg); 00058 00067 virtual int pull_config(IfTree& iftree, bool& modified); 00068 00069 private: 00070 int read_config(IfTree& iftree, bool& modified); 00071 bool _is_dummy; 00072 int _s4; 00073 }; 00074 00075 #endif // __FEA_DATA_PLANE_IFCONFIG_IFCONFIG_VLAN_GET_LINUX_HH__