diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2016-11-13 08:02:23 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2017-03-07 23:07:20 +0100 |
commit | 4f04a76b717fc4881a547f582a02a4d06d356c47 (patch) | |
tree | 90951be570b6de3889da7c5358b1fe2f998d4acd /lib/Makefile.am | |
parent | Merge pull request #257 from opensourcerouting/nhrpd (diff) | |
download | frr-4f04a76b717fc4881a547f582a02a4d06d356c47.tar.xz frr-4f04a76b717fc4881a547f582a02a4d06d356c47.zip |
*: add frr_init() infrastructure
Start centralising startup & option parsing into the library.
FRR_DAEMON_INFO is a bit weird, but it will become useful later (e.g.
for killing the ZLOG_* enum, and having the daemon name available)
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index a9fe64693..b9f318ced 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -29,6 +29,7 @@ libfrr_la_SOURCES = \ grammar_sandbox.c \ srcdest_table.c \ spf_backoff.c \ + libfrr.c \ strlcpy.c \ strlcat.c @@ -52,7 +53,9 @@ pkginclude_HEADERS = \ event_counter.h \ monotime.h \ spf_backoff.h \ - srcdest_table.h + srcdest_table.h \ + libfrr.h \ + # end noinst_HEADERS = \ plist_int.h |