mirror of
https://github.com/fwbuilder/fwbuilder
synced 2025-10-16 07:28:25 +02:00
fixes #2428 and SF bug 3305234; new build 3551
This commit is contained in:
parent
201182a43d
commit
49eed4d5be
2
VERSION
2
VERSION
@ -7,7 +7,7 @@ FWB_MICRO_VERSION=0
|
||||
# build number is like "nano" version number. I am incrementing build
|
||||
# number during development cycle
|
||||
#
|
||||
BUILD_NUM="3550"
|
||||
BUILD_NUM="3551"
|
||||
|
||||
VERSION="$FWB_MAJOR_VERSION.$FWB_MINOR_VERSION.$FWB_MICRO_VERSION.$BUILD_NUM"
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
#define VERSION "5.0.0.3550"
|
||||
#define VERSION "5.0.0.3551"
|
||||
#define GENERATION "5.0"
|
||||
|
@ -1,3 +1,9 @@
|
||||
2011-06-21 vadim <vadim@netcitadel.com>
|
||||
|
||||
* NATCompiler_pf.cpp (compile): fixed #2428 "PF compiler crashes
|
||||
when ipv4+ipv6 NAT rule uses only ipv4 address". This has been
|
||||
reported as SF bug 3305234.
|
||||
|
||||
2011-06-20 Vadim Kurland <vadim@netcitadel.com>
|
||||
|
||||
* ObjectManipulator_slots.cpp (forward): see #2493 implemented
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
|
||||
%define name fwbuilder
|
||||
%define version 5.0.0.3550
|
||||
%define version 5.0.0.3551
|
||||
%define release 1
|
||||
|
||||
%if "%_vendor" == "MandrakeSoft"
|
||||
|
@ -4,6 +4,6 @@ Replaces: fwbuilder (<=4.1.1-1), fwbuilder-common, fwbuilder-bsd, fwbuilder-linu
|
||||
Priority: extra
|
||||
Section: checkinstall
|
||||
Maintainer: vadim@fwbuilder.org
|
||||
Version: 5.0.0.3550-1
|
||||
Version: 5.0.0.3551-1
|
||||
Depends: libqt4-gui (>= 4.3.0), libxml2, libxslt1.1, libsnmp | libsnmp15
|
||||
Description: Firewall Builder GUI and policy compilers
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
%define name fwbuilder
|
||||
%define version 5.0.0.3550
|
||||
%define version 5.0.0.3551
|
||||
%define release 1
|
||||
|
||||
%if "%_vendor" == "MandrakeSoft"
|
||||
|
@ -1269,6 +1269,7 @@ void NATCompiler_pf::compile()
|
||||
add( new emptyGroupsInTSrv( "check for empty groups in TSRV" ) );
|
||||
|
||||
add( new ExpandGroups( "expand groups" ) );
|
||||
add( new dropRuleWithEmptyRE("drop rules with empty rule elements"));
|
||||
add( new eliminateDuplicatesInOSRC( "eliminate duplicates in OSRC") );
|
||||
add( new eliminateDuplicatesInODST( "eliminate duplicates in ODST") );
|
||||
add( new eliminateDuplicatesInOSRV( "eliminate duplicates in OSRV") );
|
||||
@ -1292,6 +1293,8 @@ void NATCompiler_pf::compile()
|
||||
add( new processMultiAddressObjectsInTDst(
|
||||
"process MultiAddress objects in TDst") );
|
||||
|
||||
add( new dropRuleWithEmptyRE("drop rules with empty rule elements"));
|
||||
|
||||
add( new splitOnOSrv( "split rule on original service" ) );
|
||||
add( new fillTranslatedSrv( "fill translated service" ) );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user