summaryrefslogtreecommitdiff
path: root/lib/log.c
diff options
context:
space:
mode:
authorßingen <bingen@voltanet.io>2017-05-15 17:09:28 +0200
committerRenato Westphal <renato@opensourcerouting.org>2017-07-25 00:53:23 -0300
commit6da80de983d313b6343e5a3e0a3b6a2bffbffbef (patch)
treec6bef66af54194caf7a88544a696f3b3e605bc02 /lib/log.c
parentb557e0b6df1d076b51de7d357746388a5c969803 (diff)
zebra: add pseudowire manager
Base framework for supporting MPLS pseudowires in FRR. A consistent zserv interface is provided so that any client daemon (e.g. ldpd, bgpd) can install/uninstall pseudowires in a standard way. Static pseudowires can also be implemented by using the same interface. When zebra receives a request to install a pseudowire and the installation in the kernel or hardware fails, a notification is sent back to the client daemon and a new install attempt is made every 60 seconds (until it succeeds). Support for external dataplanes is provided by the use of hooks to install/uninstall pseudowires. Signed-off-by: ßingen <bingen@voltanet.io> Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'lib/log.c')
-rw-r--r--lib/log.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/log.c b/lib/log.c
index 52d92de392..735ca71ed9 100644
--- a/lib/log.c
+++ b/lib/log.c
@@ -937,6 +937,11 @@ static const struct zebra_desc_table command_types[] = {
DESC_ENTRY (ZEBRA_LABEL_MANAGER_CONNECT),
DESC_ENTRY (ZEBRA_GET_LABEL_CHUNK),
DESC_ENTRY (ZEBRA_RELEASE_LABEL_CHUNK),
+ DESC_ENTRY (ZEBRA_PW_ADD),
+ DESC_ENTRY (ZEBRA_PW_DELETE),
+ DESC_ENTRY (ZEBRA_PW_SET),
+ DESC_ENTRY (ZEBRA_PW_UNSET),
+ DESC_ENTRY (ZEBRA_PW_STATUS_UPDATE),
};
#undef DESC_ENTRY