|
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/fibconfig/fibconfig_forwarding_sysctl.hh,v 1.6 2008/10/02 21:56:58 bms Exp $ 00021 00022 #ifndef __FEA_DATA_PLANE_FIBCONFIG_FIBCONFIG_FORWARDING_SYSCTL_HH__ 00023 #define __FEA_DATA_PLANE_FIBCONFIG_FIBCONFIG_FORWARDING_SYSCTL_HH__ 00024 00025 #include "fea/fibconfig_forwarding.hh" 00026 00027 00028 class FibConfigForwardingSysctl : public FibConfigForwarding { 00029 public: 00036 FibConfigForwardingSysctl(FeaDataPlaneManager& fea_data_plane_manager); 00037 00041 virtual ~FibConfigForwardingSysctl(); 00042 00052 virtual int unicast_forwarding_enabled4(bool& ret_value, string& error_msg) const; 00053 00063 virtual int unicast_forwarding_enabled6(bool& ret_value, string& error_msg) const; 00064 00074 virtual int accept_rtadv_enabled6(bool& ret_value, string& error_msg) const; 00075 00085 virtual int set_unicast_forwarding_enabled4(bool v, string& error_msg); 00086 00096 virtual int set_unicast_forwarding_enabled6(bool v, string& error_msg); 00097 00108 virtual int set_accept_rtadv_enabled6(bool v, string& error_msg); 00109 00110 private: 00111 }; 00112 00113 #endif // __FEA_DATA_PLANE_FIBCONFIG_FIBCONFIG_FORWARDING_SYSCTL_HH__