diff options
author | Mark Stapp <mjs@voltanet.io> | 2018-11-26 22:07:51 +0100 |
---|---|---|
committer | Mark Stapp <mjs@voltanet.io> | 2019-01-22 21:07:24 +0100 |
commit | 8a6423a372c082b51792a9b2cd5210041f017a5d (patch) | |
tree | 001ac57d56f6b059e7bb975c397d985d545dcf09 /zebra/zebra_mpls_null.c | |
parent | zebra: fix routing socket logic for labelled nexthops (diff) | |
download | frr-8a6423a372c082b51792a9b2cd5210041f017a5d.tar.xz frr-8a6423a372c082b51792a9b2cd5210041f017a5d.zip |
zebra: remove use of sync LSP update apis
Remove the last use of the pre-dataplane LSP update apis;
remove the stubs from the 'null' implementation file.
Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'zebra/zebra_mpls_null.c')
-rw-r--r-- | zebra/zebra_mpls_null.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/zebra/zebra_mpls_null.c b/zebra/zebra_mpls_null.c index eed0610b6..409432c4f 100644 --- a/zebra/zebra_mpls_null.c +++ b/zebra/zebra_mpls_null.c @@ -24,21 +24,6 @@ #if !defined(HAVE_NETLINK) && !defined(OPEN_BSD) -enum zebra_dplane_result kernel_add_lsp(zebra_lsp_t *lsp) -{ - return ZEBRA_DPLANE_REQUEST_SUCCESS; -} - -enum zebra_dplane_result kernel_upd_lsp(zebra_lsp_t *lsp) -{ - return ZEBRA_DPLANE_REQUEST_SUCCESS; -} - -enum zebra_dplane_result kernel_del_lsp(zebra_lsp_t *lsp) -{ - return ZEBRA_DPLANE_REQUEST_SUCCESS; -} - int mpls_kernel_init(void) { return -1; |