diff options
Diffstat (limited to '')
-rw-r--r-- | debian/patches/0022-Make-sla-id-config-optional.patch | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/debian/patches/0022-Make-sla-id-config-optional.patch b/debian/patches/0022-Make-sla-id-config-optional.patch new file mode 100644 index 0000000..551a9d8 --- /dev/null +++ b/debian/patches/0022-Make-sla-id-config-optional.patch @@ -0,0 +1,72 @@ +From: Roger Shimizu <rosh@debian.org> +Date: Sun, 6 Sep 2020 14:36:10 +0900 +Subject: Make sla-id config optional + +Cherry-pick from Fedora: +https://src.fedoraproject.org/rpms/wide-dhcpv6/blob/master/f/wide-dhcpv6-0009-Make-sla-id-config-optional.patch +--- + config.c | 13 ++++++++++--- + 1 file changed, 10 insertions(+), 3 deletions(-) + +diff --git a/config.c b/config.c +index 5829d92..70f6287 100644 +--- a/config.c ++++ b/config.c +@@ -126,7 +126,7 @@ extern long long cf_refreshtime; + extern char *configfilename; + + static struct keyinfo *find_keybyname __P((struct keyinfo *, char *)); +-static int add_pd_pif __P((struct iapd_conf *, struct cf_list *)); ++static int add_pd_pif __P((struct iapd_conf *, struct cf_list *, u_int32_t)); + static int add_options __P((int, struct dhcp6_ifconf *, struct cf_list *)); + static int add_prefix __P((struct dhcp6_list *, char *, int, + struct dhcp6_prefix *)); +@@ -358,6 +358,8 @@ configure_ia(ialist, iatype) + size_t confsize; + static int init = 1; + ++ u_int32_t if_count; ++ + if (init) { + TAILQ_INIT(&ia_conflist0); + init = 0; +@@ -403,6 +405,8 @@ configure_ia(ialist, iatype) + break; + } + ++ if_count = 0; ++ + /* set up parameters for the IA */ + for (cfl = iap->params; cfl; cfl = cfl->next) { + struct iapd_conf *pdp = (struct iapd_conf *) iac; +@@ -412,8 +416,9 @@ configure_ia(ialist, iatype) + case IATYPE_PD: + switch(cfl->type) { + case IACONF_PIF: +- if (add_pd_pif(pdp, cfl)) ++ if (add_pd_pif(pdp, cfl, if_count)) + goto bad; ++ if_count++; + break; + case IACONF_PREFIX: + if (add_prefix(&pdp->iapd_prefix_list, +@@ -465,9 +470,10 @@ configure_ia(ialist, iatype) + } + + static int +-add_pd_pif(iapdc, cfl0) ++add_pd_pif(iapdc, cfl0, if_count) + struct iapd_conf *iapdc; + struct cf_list *cfl0; ++ u_int32_t if_count; + { + struct cf_list *cfl; + struct prefix_ifconf *pif; +@@ -503,6 +509,7 @@ add_pd_pif(iapdc, cfl0) + goto bad; + } + ++ pif->sla_id = if_count; + pif->ifid_len = IFID_LEN_DEFAULT; + pif->sla_len = SLA_LEN_DEFAULT; + |