diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-02-05 18:41:12 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-05 18:41:12 -0500 |
| commit | 4634d02cfd86685156b29c8084a979749efe15e2 (patch) | |
| tree | 877368695bf3484d632785d040eab21ac2aa802e /zebra/zebra_mpls_null.c | |
| parent | c0a0dbb01b7186dddfa5320d12f26efc761da3b0 (diff) | |
| parent | 9bd9717bb28195bb2f0a874993f7bc89cbc47e1b (diff) | |
Merge pull request #3684 from mjstapp/dplane_pw
zebra: async dataplane for pseudowires
Diffstat (limited to 'zebra/zebra_mpls_null.c')
| -rw-r--r-- | zebra/zebra_mpls_null.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/zebra/zebra_mpls_null.c b/zebra/zebra_mpls_null.c index 409432c4fb..2cc3f3b69d 100644 --- a/zebra/zebra_mpls_null.c +++ b/zebra/zebra_mpls_null.c @@ -29,6 +29,15 @@ int mpls_kernel_init(void) return -1; }; +/* + * Pseudowire update api - note that the default has been + * to report 'success' for pw updates on unsupported platforms. + */ +enum zebra_dplane_result kernel_pw_update(struct zebra_dplane_ctx *ctx) +{ + return ZEBRA_DPLANE_REQUEST_SUCCESS; +} + enum zebra_dplane_result kernel_lsp_update(struct zebra_dplane_ctx *ctx) { return ZEBRA_DPLANE_REQUEST_FAILURE; |
