summaryrefslogtreecommitdiffstats
path: root/tests/test_lblmgr.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-11-09 20:34:42 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-11-27 15:09:35 +0100
commite1a1880de3e9da60f72198924fe3407f7bbc975d (patch)
treecbf777f55ae78c3833290b4213dbd68b53ef6263 /tests/test_lblmgr.c
parentlib, zebra: Add ability to notify to Routing Protocols Success/Failure (diff)
downloadfrr-e1a1880de3e9da60f72198924fe3407f7bbc975d.tar.xz
frr-e1a1880de3e9da60f72198924fe3407f7bbc975d.zip
*: Make zapi route install Notifications optional
Allow the higher level protocol to specify if it would like to receive notifications about it's routes that it has installed. I've purposely made it part of zclient_new_notify because we need to track the routes on a per daemon basis only. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'tests/test_lblmgr.c')
-rw-r--r--tests/test_lblmgr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_lblmgr.c b/tests/test_lblmgr.c
index 5e604db61..b08f63b70 100644
--- a/tests/test_lblmgr.c
+++ b/tests/test_lblmgr.c
@@ -115,7 +115,7 @@ void init_zclient(struct thread_master *master, char *lm_zserv_path)
{
frr_zclient_addr(&zclient_addr, &zclient_addr_len, lm_zserv_path);
- zclient = zclient_new(master);
+ zclient = zclient_new_notify(master, &zclient_options_default);
/* zclient_init(zclient, ZEBRA_LABEL_MANAGER, 0); */
zclient->sock = -1;
zclient->redist_default = ZEBRA_ROUTE_LDP;