logswan

Fast Web log analyzer using probabilistic data structures
Log | Files | Refs | README | LICENSE

commit 2bdc8fe7c67afe460252dcdc8f4f2bbae3b8cd13
parent 7d813359247f5aaa8b2deb2b2fa84276bacc15c7
Author: Frederic Cambus <fred@statdns.com>
Date:   Sat, 17 Dec 2016 23:42:12 +0100

Logswan 1.06 release

Diffstat:
MCMakeLists.txt | 4++--
MChangeLog | 3++-
Msrc/config.c | 4++--
Msrc/config.h | 6+++---
Msrc/logswan.c | 4++--
Msrc/output.c | 4++--
Msrc/output.h | 4++--
Msrc/parse.c | 4++--
Msrc/parse.h | 4++--
9 files changed, 19 insertions(+), 18 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -1,11 +1,11 @@ ############################################################################### # # -# Logswan 1.05 # +# Logswan 1.06 # # Copyright (c) 2015-2016, Frederic Cambus # # http://www.logswan.org # # # # Created: 2015-05-31 # -# Last Updated: 2016-07-18 # +# Last Updated: 2016-12-17 # # # # Logswan is released under the BSD 2-Clause license. # # See LICENSE file for details. # diff --git a/ChangeLog b/ChangeLog @@ -1,4 +1,4 @@ -Logswan 1.06 (YYYY-MM-DD) +Logswan 1.06 (2016-12-17) - Relicensed under the BSD 2-Clause license - Use strtok_r instead of strtok to tokenize lines @@ -9,6 +9,7 @@ Logswan 1.06 (YYYY-MM-DD) - Use fstat on open file descriptor instead of using stat before opening the input file - Count the log line as invalid if parsedLine.remoteHost is NULL +- Pass results structure by reference, not by value - Initialize some uninitialized variables - Headers cleanup diff --git a/src/config.c b/src/config.c @@ -1,11 +1,11 @@ /*****************************************************************************/ /* */ -/* Logswan 1.05 */ +/* Logswan 1.06 */ /* Copyright (c) 2015-2016, Frederic Cambus */ /* http://www.logswan.org */ /* */ /* Created: 2015-05-31 */ -/* Last Updated: 2016-07-18 */ +/* Last Updated: 2016-12-17 */ /* */ /* Logswan is released under the BSD 2-Clause license. */ /* See LICENSE file for details. */ diff --git a/src/config.h b/src/config.h @@ -1,11 +1,11 @@ /*****************************************************************************/ /* */ -/* Logswan 1.05 */ +/* Logswan 1.06 */ /* Copyright (c) 2015-2016, Frederic Cambus */ /* http://www.logswan.org */ /* */ /* Created: 2015-05-31 */ -/* Last Updated: 2016-07-18 */ +/* Last Updated: 2016-12-17 */ /* */ /* Logswan is released under the BSD 2-Clause license. */ /* See LICENSE file for details. */ @@ -15,7 +15,7 @@ #ifndef CONFIG_H #define CONFIG_H -#define VERSION "Logswan 1.05" +#define VERSION "Logswan 1.06" enum { HLL_BITS = 20, diff --git a/src/logswan.c b/src/logswan.c @@ -1,11 +1,11 @@ /*****************************************************************************/ /* */ -/* Logswan 1.05 */ +/* Logswan 1.06 */ /* Copyright (c) 2015-2016, Frederic Cambus */ /* http://www.logswan.org */ /* */ /* Created: 2015-05-31 */ -/* Last Updated: 2016-10-30 */ +/* Last Updated: 2016-12-17 */ /* */ /* Logswan is released under the BSD 2-Clause license. */ /* See LICENSE file for details. */ diff --git a/src/output.c b/src/output.c @@ -1,11 +1,11 @@ /*****************************************************************************/ /* */ -/* Logswan 1.05 */ +/* Logswan 1.06 */ /* Copyright (c) 2015-2016, Frederic Cambus */ /* http://www.logswan.org */ /* */ /* Created: 2015-05-31 */ -/* Last Updated: 2016-07-18 */ +/* Last Updated: 2016-12-17 */ /* */ /* Logswan is released under the BSD 2-Clause license. */ /* See LICENSE file for details. */ diff --git a/src/output.h b/src/output.h @@ -1,11 +1,11 @@ /*****************************************************************************/ /* */ -/* Logswan 1.05 */ +/* Logswan 1.06 */ /* Copyright (c) 2015-2016, Frederic Cambus */ /* http://www.logswan.org */ /* */ /* Created: 2015-05-31 */ -/* Last Updated: 2016-10-30 */ +/* Last Updated: 2016-12-17 */ /* */ /* Logswan is released under the BSD 2-Clause license. */ /* See LICENSE file for details. */ diff --git a/src/parse.c b/src/parse.c @@ -1,11 +1,11 @@ /*****************************************************************************/ /* */ -/* Logswan 1.05 */ +/* Logswan 1.06 */ /* Copyright (c) 2015-2016, Frederic Cambus */ /* http://www.logswan.org */ /* */ /* Created: 2015-05-31 */ -/* Last Updated: 2016-11-26 */ +/* Last Updated: 2016-12-17 */ /* */ /* Logswan is released under the BSD 2-Clause license. */ /* See LICENSE file for details. */ diff --git a/src/parse.h b/src/parse.h @@ -1,11 +1,11 @@ /*****************************************************************************/ /* */ -/* Logswan 1.05 */ +/* Logswan 1.06 */ /* Copyright (c) 2015-2016, Frederic Cambus */ /* http://www.logswan.org */ /* */ /* Created: 2015-05-31 */ -/* Last Updated: 2016-07-18 */ +/* Last Updated: 2016-12-17 */ /* */ /* Logswan is released under the BSD 2-Clause license. */ /* See LICENSE file for details. */