diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2005-07-04 10:52:49 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2005-07-04 10:52:49 +0000 |
commit | 8ab54c554dc1576e21cdf8694063db3f96e111f1 (patch) | |
tree | b07c89a49767754b9b8d09c56c1fd6962feeefa5 /syslogd.c | |
parent | fc31836d6e30e590cec576417f290e12f6d841ee (diff) | |
download | rsyslog-8ab54c554dc1576e21cdf8694063db3f96e111f1.tar.gz rsyslog-8ab54c554dc1576e21cdf8694063db3f96e111f1.tar.bz2 rsyslog-8ab54c554dc1576e21cdf8694063db3f96e111f1.zip |
max message size set to 32k to support IHE
Diffstat (limited to 'syslogd.c')
-rw-r--r-- | syslogd.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -7,6 +7,8 @@ * - it looks liek the time stamp is missing on internally-generated * messages - but maybe we need to keep this for compatibility * reasons. + * - selector line for MySQL aborts if no template is given and + * also no semicolon is present at the end of the line * * \brief This is what will become the rsyslogd daemon. * @@ -115,7 +117,7 @@ static char sccsid[] = "@(#)rsyslogd.c 0.8 (Adiscon) 18/03/2005"; #define BSD #endif -#define MAXLINE 1024 /* maximum line length */ +#define MAXLINE 32768 /* maximum line length */ #define DEFUPRI (LOG_USER|LOG_NOTICE) #define DEFSPRI (LOG_KERN|LOG_CRIT) #define TIMERINTVL 30 /* interval for checking flush, mark */ |