logswan

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

commit 6db1bd1dcee7672b8ed602f061c26ebdc338b29f
parent eb2316381c28b0c0026cca53f26cac378a0bfdc0
Author: Frederic Cambus <fcambus@users.sourceforge.net>
Date:   Thu,  3 Dec 2015 23:45:37 +0100

Moving STATUS_CODE_MAX definition to logswan.h

Diffstat:
Msrc/logswan.h | 4+++-
Msrc/results.h | 4+---
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/logswan.h b/src/logswan.h @@ -4,7 +4,7 @@ /* https://github.com/fcambus/logswan */ /* */ /* Created: 2015/05/31 */ -/* Last Updated: 2015/11/02 */ +/* Last Updated: 2015/12/03 */ /* */ /* Logswan is released under the BSD 3-Clause license. */ /* See LICENSE file for details. */ @@ -15,6 +15,8 @@ #define LOGSWAN_H #define VERSION "Logswan 1.02" + #define LINE_MAX_LENGTH 65536 +#define STATUS_CODE_MAX 512 #endif /* LOGSWAN_H */ diff --git a/src/results.h b/src/results.h @@ -4,7 +4,7 @@ /* https://github.com/fcambus/logswan */ /* */ /* Created: 2015/05/31 */ -/* Last Updated: 2015/11/02 */ +/* Last Updated: 2015/12/03 */ /* */ /* Logswan is released under the BSD 3-Clause license. */ /* See LICENSE file for details. */ @@ -14,8 +14,6 @@ #ifndef RESULTS_H #define RESULTS_H -#define STATUS_CODE_MAX 512 - struct results { uint64_t fileSize; uint64_t invalidLines;