From 88c845bc16c4368d902f80b30076ae2d0b306276 Mon Sep 17 00:00:00 2001 From: Tobias Waldekranz Date: Mon, 8 May 2023 22:50:28 +0200 Subject: [PATCH] confd: Disable support for non-contiguous netmasks Not something we need, and keeping it disabled has some nice symmetry effects on the handling of ipv4/6 addresses. --- src/confd/src/ietf-interfaces.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/confd/src/ietf-interfaces.c b/src/confd/src/ietf-interfaces.c index 8348645a..b2c86680 100644 --- a/src/confd/src/ietf-interfaces.c +++ b/src/confd/src/ietf-interfaces.c @@ -18,15 +18,10 @@ static const char *iffeat[] = { NULL }; -static const char *ipfeat[] = { - "ipv4-non-contiguous-netmasks", - NULL -}; - static const struct srx_module_requirement ietf_if_reqs[] = { { .dir = YANG_PATH_, .name = "ietf-interfaces", .rev = "2018-02-20", .features = iffeat }, { .dir = YANG_PATH_, .name = "iana-if-type", .rev = "2023-01-26" }, - { .dir = YANG_PATH_, .name = "ietf-ip", .rev = "2018-02-22", .features = ipfeat }, + { .dir = YANG_PATH_, .name = "ietf-ip", .rev = "2018-02-22" }, { .dir = YANG_PATH_, .name = "infix-ip", .rev = "2023-04-24" }, { NULL }