final touches for 3.19.0

This commit is contained in:
Rainer Gerhards 2008-05-06 10:58:06 +02:00
parent 9e0af15a32
commit 02795031a3
6 changed files with 10 additions and 11 deletions

View File

@ -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

View File

@ -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 <a href="professional_support.html">professional
rsyslog support</a> available directly from the source!</p>
<p><b>This documentation is for version 3.17.2 (devel branch) of rsyslog.</b>
<p><b>This documentation is for version 3.19.0 (devel branch) of rsyslog.</b>
Visit the <i> <a href="http://www.rsyslog.com/doc-status.html">rsyslog status page</a></i></b> to obtain current
version information and project status.
</p><p><b>If you like rsyslog, you might

View File

@ -5,11 +5,9 @@
<p>This page reflects the status as of 2008-05-04.</p>
<h2>Current Releases</h2>
<!--
<p><b>development:</b> 3.17.1 -
<a href="http://www.rsyslog.com/Article213.phtml">change log</a> -
<a href="http://www.rsyslog.com/Downloads-req-viewdownloaddetails-lid-98.phtml">download</a>
-->
<p><b>development:</b> 3.19.0 -
<a href="http://www.rsyslog.com/Article221.phtml">change log</a> -
<a href="http://www.rsyslog.com/Downloads-req-viewdownloaddetails-lid-102.phtml">download</a>
<br><b>beta:</b> 3.17.2 -
<a href="http://www.rsyslog.com/Article220.phtml">change log</a> -

View File

@ -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)

View File

@ -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 =

View File

@ -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);