mirror of
https://github.com/fwbuilder/fwbuilder
synced 2025-10-17 07:57:43 +02:00
42 lines
1.2 KiB
C
42 lines
1.2 KiB
C
/*
|
|
|
|
Firewall Builder
|
|
|
|
Copyright (C) 2007 NetCitadel, LLC
|
|
|
|
Author: Vadim Kurland vadim@fwbuilder.org
|
|
|
|
$Id$
|
|
|
|
This program is free software which we release under the GNU General Public
|
|
License. You may redistribute and/or modify this program under the terms
|
|
of that license as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
To get a copy of the GNU General Public License, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
Define global macros and constants in this file if they are used in
|
|
the GUI, compilers and tools
|
|
|
|
*/
|
|
|
|
#ifndef __DEFINITIONS_
|
|
#define __DEFINITIONS_
|
|
|
|
// Various #defines that are needed both in the GUI and compilers
|
|
|
|
// definitions for ipfw classify methods
|
|
#define DIVERTSOCKET 0
|
|
#define DUMMYNETPIPE 1
|
|
#define DUMMYNETQUEUE 2
|
|
|
|
|
|
#endif
|