From 02795031a3021698baf857ae0c3af0ce38cd7cd4 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Tue, 6 May 2008 10:58:06 +0200 Subject: final touches for 3.19.0 --- ChangeLog | 6 ++++-- doc/manual.html | 2 +- doc/status.html | 8 +++----- plugins/im3195/Makefile.am | 2 +- plugins/imtemplate/Makefile.am | 2 +- runtime/nsd_gtls.c | 1 - 6 files changed, 10 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6f73db81..ec5494f7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,13 +1,15 @@ --------------------------------------------------------------------------- -Version 3.19.0 (rgerhards), 2008-04-?? +Version 3.19.0 (rgerhards), 2008-05-06 - begins new devel branch version +- implemented TLS for plain tcp syslog (this is also the world's first + implementation of IETF's upcoming syslog-transport-tls draft) - partly rewritten and improved omfwd among others, now loads TCP code only if this is actually necessary -- implemented im3195, the RFC3195 input as a plugin - split of a "runtime library" for rsyslog - this is not yet a clean model, because some modularization is still outstanding. In theory, this shall enable other utilities but rsyslogd to use the same runtime +- implemented im3195, the RFC3195 input as a plugin - changed directory structure, files are now better organized - a lot of cleanup in regard to modularization - -c option no longer must be the first option - thanks to varmjofekoj diff --git a/doc/manual.html b/doc/manual.html index 1719ef5e..8471a80f 100644 --- a/doc/manual.html +++ b/doc/manual.html @@ -16,7 +16,7 @@ relay chains while at the same time being very easy to setup for the novice user. And as we know what enterprise users really need, there is also professional rsyslog support available directly from the source!

-

This documentation is for version 3.17.2 (devel branch) of rsyslog. +

This documentation is for version 3.19.0 (devel branch) of rsyslog. Visit the rsyslog status page to obtain current version information and project status.

If you like rsyslog, you might diff --git a/doc/status.html b/doc/status.html index 684afe2d..c67abbe9 100644 --- a/doc/status.html +++ b/doc/status.html @@ -5,11 +5,9 @@

This page reflects the status as of 2008-05-04.

Current Releases

- +

development: 3.19.0 - +change log - +download
beta: 3.17.2 - change log - diff --git a/plugins/im3195/Makefile.am b/plugins/im3195/Makefile.am index 57c8ab8b..bfceb71e 100644 --- a/plugins/im3195/Makefile.am +++ b/plugins/im3195/Makefile.am @@ -1,6 +1,6 @@ pkglib_LTLIBRARIES = im3195.la -im3195_la_SOURCES = im3195.c im3195.h +im3195_la_SOURCES = im3195.c im3195_la_CPPFLAGS = $(rsrt_cflags) $(pthreads_cflags) $(LIBLOGGING_CFLAGS) im3195_la_LDFLAGS = -module -avoid-version im3195_la_LIBADD = $(LIBLOGGING_LIBS) diff --git a/plugins/imtemplate/Makefile.am b/plugins/imtemplate/Makefile.am index a9221817..0ea4355e 100644 --- a/plugins/imtemplate/Makefile.am +++ b/plugins/imtemplate/Makefile.am @@ -1,6 +1,6 @@ pkglib_LTLIBRARIES = imtemplate.la imtemplate_la_SOURCES = imtemplate.c -imtemplate_la_CPPFLAGS = -I$(top_srcdir) $(pthreads_cflags) +imtemplate_la_CPPFLAGS = -I$(top_srcdir) $(pthreads_cflags) $(rsrt_cflags) imtemplate_la_LDFLAGS = -module -avoid-version imtemplate_la_LIBADD = diff --git a/runtime/nsd_gtls.c b/runtime/nsd_gtls.c index 20de772a..657de842 100644 --- a/runtime/nsd_gtls.c +++ b/runtime/nsd_gtls.c @@ -416,7 +416,6 @@ static rsRetVal Rcv(nsd_t *pNsd, uchar *pBuf, ssize_t *pLenBuf) { DEFiRet; - int gnuRet; ssize_t lenRcvd; nsd_gtls_t *pThis = (nsd_gtls_t*) pNsd; ISOBJ_TYPE_assert(pThis, nsd_gtls); -- cgit