-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Loic Pefferkorn
committed
Jul 19, 2018
1 parent
6260b71
commit e4639d8
Showing
3 changed files
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
v0.7.2 - 2018/07/19: Loic Pefferkorn <[email protected]> | ||
* Fix segfault on malformed 802.1q header (author: aapo, issue #4) | ||
* Fix segfault on malformed IPIP header (issue #5) | ||
* Support for OpenSSL >= 1.1.0 (author: jumrc) | ||
* Global code cleanup: Doxygen comments, source code split | ||
|
||
v0.7.1 - 2016/04/21: Loic Pefferkorn <[email protected]> | ||
* Autotools update to ensure OS X compatibility (10.9 with MacPorts) | ||
* Warnings cleanup | ||
|
||
v0.7 - 2014/03/04: Loic Pefferkorn <[email protected]> | ||
* Ported to FreeBSD | ||
* Better error messages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
Hisu Kang: | ||
-Suggestion for IEEE 802.1Q support | ||
-Preliminary patch for 6in4 support (patch adapted) | ||
- Suggestion for IEEE 802.1Q support | ||
- Preliminary patch for 6in4 support (patch adapted) | ||
|
||
William Stearns: | ||
-Tests for OS X compatibility (10.9 with MacPorts project) | ||
- Tests for OS X compatibility (10.9 with MacPorts project) | ||
|
||
Aapo Rantalainen: | ||
- Segfault fix on malformed 802.1q header | ||
|
||
jurmc: | ||
- Support for OpenSSL >= 1.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Process this file with autoconf to produce a configure script. | ||
|
||
AC_PREREQ([2.69]) | ||
AC_INIT([ipdecap], [0.7.1], [[email protected]]) | ||
AC_INIT([ipdecap], [0.7.2], [[email protected]]) | ||
AC_CANONICAL_HOST | ||
AC_CONFIG_SRCDIR([src/ipdecap.c]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
|