|
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_property_bsd.hh,v 1.5 2008/10/02 21:57:06 bms Exp $ 00021 00022 #ifndef __FEA_DATA_PLANE_IFCONFIG_IFCONFIG_PROPERTY_BSD_HH__ 00023 #define __FEA_DATA_PLANE_IFCONFIG_IFCONFIG_PROPERTY_BSD_HH__ 00024 00025 #if defined(HOST_OS_BSDI) \ 00026 || defined(HOST_OS_DRAGONFLYBSD) \ 00027 || defined(HOST_OS_FREEBSD) \ 00028 || defined(HOST_OS_MACOSX) \ 00029 || defined(HOST_OS_NETBSD) \ 00030 || defined(HOST_OS_OPENBSD) 00031 00032 00033 #include "fea/ifconfig_property.hh" 00034 00035 00036 class IfConfigPropertyBsd : public IfConfigProperty { 00037 public: 00044 IfConfigPropertyBsd(FeaDataPlaneManager& fea_data_plane_manager); 00045 00049 virtual ~IfConfigPropertyBsd(); 00050 00051 private: 00057 virtual bool test_have_ipv4() const; 00058 00064 virtual bool test_have_ipv6() const; 00065 }; 00066 00067 #endif 00068 #endif // __FEA_DATA_PLANE_IFCONFIG_IFCONFIG_PROPERTY_BSD_HH__