diff options
author | Donald Sharp <sharpd@cumulusnetwroks.com> | 2016-07-13 02:24:00 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetwroks.com> | 2016-07-13 02:24:00 +0200 |
commit | 275382273bc8b9d1868c6fbefd139c0a708a7d93 (patch) | |
tree | f92eaea2ef63bcc708b20b74aacfb4f09c5ac25b /ospf6d/ospf6_zebra.c | |
parent | pimd: Refactor some encode/decode functions (diff) | |
parent | quagga-reload.py needs a --stdout option (diff) | |
download | frr-275382273bc8b9d1868c6fbefd139c0a708a7d93.tar.xz frr-275382273bc8b9d1868c6fbefd139c0a708a7d93.zip |
Merge remote-tracking branch 'origin/cmaster' into cmaster-next
Diffstat (limited to 'ospf6d/ospf6_zebra.c')
-rw-r--r-- | ospf6d/ospf6_zebra.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ospf6d/ospf6_zebra.c b/ospf6d/ospf6_zebra.c index 93ec1f2ce..0395b082d 100644 --- a/ospf6d/ospf6_zebra.c +++ b/ospf6d/ospf6_zebra.c @@ -28,6 +28,7 @@ #include "stream.h" #include "zclient.h" #include "memory.h" +#include "lib/bfd.h" #include "ospf6_proto.h" #include "ospf6_top.h" @@ -656,6 +657,9 @@ DEFUN (no_redistribute_ospf6, static void ospf6_zebra_connected (struct zclient *zclient) { + /* Send the client registration */ + bfd_client_sendmsg(zclient, ZEBRA_BFD_CLIENT_REGISTER); + zclient_send_reg_requests (zclient, VRF_DEFAULT); } |