summaryrefslogtreecommitdiffstats
path: root/ldpd/notification.c
diff options
context:
space:
mode:
authorKaren Schoener <karen@volta.io>2020-05-28 22:36:35 +0200
committerKaren Schoener <karen@volta.io>2020-06-01 19:21:37 +0200
commitfd563cc7f35e598decdbfd6a58bae2f050143b3f (patch)
tree682f7ce1aaa6b133803c0c61e31e2c6f55d387f9 /ldpd/notification.c
parentMerge pull request #6476 from wesleycoakley/zebra-debuglogfix (diff)
downloadfrr-fd563cc7f35e598decdbfd6a58bae2f050143b3f.tar.xz
frr-fd563cc7f35e598decdbfd6a58bae2f050143b3f.zip
ldpd: Relay data plane pseudowire status in LDP notification
Provide a way for the data plane to indicate pseudowire status (such as: not forwarding, AC failure). On a data plane pseudowire install failure, data plane sets the pseudowire status. Zebra relays the pseudowire status to LDP. LDP includes the pseudowire status in the LDP notification to the LDP peer. Signed-off-by: Karen Schoener <karen@voltanet.io>
Diffstat (limited to 'ldpd/notification.c')
-rw-r--r--ldpd/notification.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldpd/notification.c b/ldpd/notification.c
index 4a5f3c8fa..6de26107e 100644
--- a/ldpd/notification.c
+++ b/ldpd/notification.c
@@ -321,5 +321,5 @@ log_msg_notification(int out, struct nbr *nbr, struct notify_msg *nm)
debug_msg(out, "notification: fec %s", log_map(&nm->fec));
if (nm->flags & F_NOTIF_PW_STATUS)
debug_msg(out, "notification: pw-status %s",
- (nm->pw_status) ? "not forwarding" : "forwarding");
+ (nm->pw_status == PW_FORWARDING) ? "forwarding" : "not forwarding");
}