projects
/
project
/
ubox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06cbdf5
)
RFC 3164 compliant remote logging
author
John Crispin
<blogic@openwrt.org>
Tue, 16 Sep 2014 12:20:30 +0000
(14:20 +0200)
committer
John Crispin
<blogic@openwrt.org>
Tue, 16 Sep 2014 12:20:30 +0000
(14:20 +0200)
When logread daemon send a syslog message to another host, time, severity and facility are cut off.
The message contains only text. This patch adds time, severity and facility in the message as described in the RFC 3164.
Signed-off-by: Belkov Max <belkov-max@mail.ru>
log/logread.c
patch
|
blob
|
history
diff --git
a/log/logread.c
b/log/logread.c
index 28c9462904e69e07ae1649fa6ae9658567d320b6..a7ab567a9fa0bbd0f6c4b8072f7e35b9128d332c 100644
(file)
--- a/
log/logread.c
+++ b/
log/logread.c
@@
-135,9
+135,12
@@
static int log_notify(struct blob_attr *msg)
if (log_type == LOG_NET) {
int err;
- *buf = '\0';
- if (hostname)
- snprintf(buf, sizeof(buf), "%s ", hostname);
+ snprintf(buf, sizeof(buf), "<%u>", p);
+ strncat(buf, c + 4, 16);
+ if (hostname) {
+ strncat(buf, hostname, sizeof(buf));
+ strncat(buf, " ", sizeof(buf));
+ }
if (log_prefix) {
strncat(buf, log_prefix, sizeof(buf));
strncat(buf, ": ", sizeof(buf));