diff options
| author | David Lamparter <equinox@diac24.net> | 2020-04-29 10:26:05 +0200 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-01-17 00:39:00 +0100 | 
| commit | 1c6261a99e9a1447422869a116f704097a19854a (patch) | |
| tree | fd17c3f2435407bcd4bc329a531f16f961c57445 /lib/subdir.am | |
| parent | 603c61656fe2a758aae466a801baccbe63697f67 (diff) | |
lib: RFC5424 & journald extended syslog target
Not much to say here, user docs are coming up in a separate commit.
RFC5424 and (systemd's) journald allow passing structured key-value
data.  This stuffs the metadata we have available into there.
The "does the system syslogd support RFC5424" question is unfortunately
not easily answered, so we can only give an affirmative answer on NetBSD
5.0+ or FreeBSD 12+.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/subdir.am')
| -rw-r--r-- | lib/subdir.am | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/subdir.am b/lib/subdir.am index bb10d71ed1..a56bbb0c8d 100644 --- a/lib/subdir.am +++ b/lib/subdir.am @@ -110,6 +110,8 @@ lib_libfrr_la_SOURCES = \  	lib/yang_wrappers.c \  	lib/zclient.c \  	lib/zlog.c \ +	lib/zlog_5424.c \ +	lib/zlog_5424_cli.c \  	lib/zlog_targets.c \  	lib/printf/printf-pos.c \  	lib/printf/vfprintf.c \ @@ -168,6 +170,7 @@ clippy_scan += \  	lib/routemap_cli.c \  	lib/thread.c \  	lib/vty.c \ +	lib/zlog_5424_cli.c \  	# end  pkginclude_HEADERS += \ @@ -281,6 +284,7 @@ pkginclude_HEADERS += \  	lib/zclient.h \  	lib/zebra.h \  	lib/zlog.h \ +	lib/zlog_5424.h \  	lib/zlog_targets.h \  	lib/pbr.h \  	lib/routing_nb.h \  | 
