|
xorp
|
00001 // vim:set sts=4 ts=8: 00002 00003 // Copyright (c) 2001-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/policy/common/filter.hh,v 1.8 2008/10/02 21:58:07 bms Exp $ 00021 00022 #ifndef __POLICY_COMMON_FILTER_HH__ 00023 #define __POLICY_COMMON_FILTER_HH__ 00024 00025 00026 00027 namespace filter { 00028 00029 00030 00043 enum Filter { 00044 IMPORT = 1, 00045 EXPORT_SOURCEMATCH = 2, 00046 EXPORT = 4 00047 }; 00048 00049 00054 const char* filter2str(const Filter& f); 00055 00056 } // namespace 00057 00058 00059 #endif // __POLICY_COMMON_FILTER_HH__