Updated ChangeLog with all changes from 2.0.0-rc3
Updated ChangeLog with all changes from 2.0.0-rc3
This commit is contained in:
parent
35456877fa
commit
4ed4558192
143
ChangeLog
143
ChangeLog
@ -1,3 +1,146 @@
|
||||
commit 35456877fa257889c7d894cc24c98fba06106ca6
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Sun Aug 21 13:50:16 2011 -0400
|
||||
|
||||
Bug fix for ipfw firewalls to not always require seeing 'Dynamic' rules
|
||||
|
||||
This commit fixes an issue on ipfw firewalls where fwknopd would always require
|
||||
seeing ipfw 'Dynamic' rules associated with newly added connections. But, such
|
||||
connections may never be established for various reasons. Previous to this
|
||||
commit the following warning was frequently generated by fwknopd:
|
||||
|
||||
Unexpected error: did not find 'Dynamic rules' string in list output.
|
||||
|
||||
commit 4b2a96578bcc8ba07371989dcc124ef42813acea
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Sun Aug 21 13:28:16 2011 -0400
|
||||
|
||||
Bug fix for missing set existence check on ipfw firewalls
|
||||
|
||||
This commit fixes an issues on systems running the ipfw firewall where the
|
||||
'set' where fwknopd puts new access rules was attempted to be deleted without
|
||||
first checking to see whether it exists. The following errors would be
|
||||
generated (now fixed):
|
||||
|
||||
ipfw: rule 16777217: setsockopt(IP_FW_DEL): Invalid argument
|
||||
Error 17664 from cmd:'/sbin/ipfw delete set 1':
|
||||
Fatal: Errors detected during ipfw rules initialization.
|
||||
|
||||
commit 03859387b6667839d8eb6eaf1601e2c14c24d355
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Sat Aug 20 22:34:24 2011 -0400
|
||||
|
||||
Bug fix to create the digest.cache file at init
|
||||
|
||||
Bug fix to ensure that the digest.cache file gets created at fwknopd init time
|
||||
so fwknopd does not throw the following error:
|
||||
|
||||
Error opening digest cache file. Incoming digests will not be remembered.
|
||||
|
||||
commit 04afd2846dd563296c40667557ef4ac0d47aeb0c
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Sat Aug 20 22:02:21 2011 -0400
|
||||
|
||||
On FreeBSD, made gpgme header path inclusion optional
|
||||
|
||||
If gpgme is installed on FreeBSD systems it appears that
|
||||
-I/usr/local/include/gpgme must be added to the include path, but this change
|
||||
only adds the path if gpgme is installed and going to be used.
|
||||
|
||||
commit 6eeb41309401a0c8a47613bcc9f3ce58aa1f6436
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Sat Aug 20 13:33:00 2011 -0400
|
||||
|
||||
Fixed a few minor compiler warnings on FreeBSD
|
||||
|
||||
This commit fixes a few warnings about possible uninitialized and unused
|
||||
variables.
|
||||
|
||||
commit 4248b2687054b38e79e2ab9eecf71e5b299172f4
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Sat Aug 20 13:19:33 2011 -0400
|
||||
|
||||
On FreeBSD disable read-only relocations and immediate binding protections
|
||||
|
||||
gcc on FreeBSD generates the following errors when the -Wl,-z,relro -Wl,-z,now
|
||||
flags are used:
|
||||
|
||||
gcc: -z: linker input file unused because linking not done
|
||||
gcc: relro: linker input file unused because linking not done
|
||||
gcc: -z: linker input file unused because linking not done
|
||||
gcc: now: linker input file unused because linking not done
|
||||
|
||||
commit ff7c4219e8a946fa28aeec941a17d3998ab87ae7
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Sat Aug 20 12:56:30 2011 -0400
|
||||
|
||||
Update to suppress additional compiler warning
|
||||
|
||||
This change fixes the following compiler warning that was seen with many of
|
||||
the source files in server/
|
||||
|
||||
fwknopd_common.h:223: warning: ‘config_map’ defined but not used
|
||||
|
||||
commit ab7226092dcf687a46916e1841cc05107a5fce8f
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Sat Aug 20 12:34:57 2011 -0400
|
||||
|
||||
Minor restructuring to suppress compiler "defined but not used warnings"
|
||||
|
||||
This commit fixes several compiler warnings like the following (now that -Wall
|
||||
is the default):
|
||||
|
||||
config_init.h:68: warning: ‘cmd_opts’ defined but not used
|
||||
|
||||
commit db681fb7916470ec981f0d4e4514402cb49eca3f
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Fri Aug 19 22:00:16 2011 -0400
|
||||
|
||||
minor commit to fix minor compilations warnings
|
||||
|
||||
commit 637f7a4c936d91a18ef71f364c5fe1c7c5256f5e
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Fri Aug 19 21:14:24 2011 -0400
|
||||
|
||||
Added -Wall for all gcc warnings during compile
|
||||
|
||||
Enable gcc compilation to include -Wall for all warnings (can be disabled
|
||||
with --disable-wall to ./configure).
|
||||
|
||||
commit bf59c2688f3dc11913c347c4d1e92c95dfcaa671
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Fri Aug 19 20:51:50 2011 -0400
|
||||
|
||||
Bug fix for ./configure args to disable compile time security options
|
||||
|
||||
The ./configure script would generate the following error for the attempted
|
||||
use of the --without-stackprotector (and other related options like
|
||||
--without-pie):
|
||||
|
||||
configure: WARNING: unrecognized options: --without-stackprotect
|
||||
|
||||
commit 41fc93407e303a47a412ee91a54f136f80a903f1
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Thu Aug 18 22:26:52 2011 -0400
|
||||
|
||||
added the VERSION file
|
||||
|
||||
commit 8b0787c270dc12552275d610bf38115f95cd5972
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Thu Aug 18 22:25:12 2011 -0400
|
||||
|
||||
Bumped version to fwknop-2.0.0-rc3
|
||||
|
||||
Bumped version to fwknop-2.0.0-rc3
|
||||
|
||||
commit 1e494aba2ec806bec8f670c5378cf6dd5624c012
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Thu Aug 18 21:13:58 2011 -0400
|
||||
|
||||
Added ChangeLog derived from git commit messages.
|
||||
|
||||
There will be branch and release specific ChangeLog files as well.
|
||||
|
||||
commit 409c08ac5c3f6310306ddba9b34c985db491722c
|
||||
Author: Michael Rash <mbr@cipherdyne.org>
|
||||
Date: Thu Aug 18 21:10:09 2011 -0400
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user