Lines Matching defs:nconf
119 static struct bgpd_config *conf, *nconf;
1005 nconf = new_config();
1006 copy_config(nconf, &tconf);
1040 &nconf->rde_prefixsets);
1048 &nconf->rde_originsets);
1056 aset = as_sets_lookup(&nconf->as_sets,
1100 SIMPLEQ_INSERT_TAIL(&nconf->rde_originsets, ps,
1103 SIMPLEQ_INSERT_TAIL(&nconf->rde_prefixsets, ps,
1131 if (as_sets_lookup(&nconf->as_sets, name) != NULL)
1133 last_as_set = as_sets_new(&nconf->as_sets, name, nmemb,
1158 SIMPLEQ_INSERT_TAIL(&nconf->l3vpns, vpn, entry);
1183 if (nconf == NULL)
3647 if (conf->filtered_in_locrib != nconf->filtered_in_locrib) {
3653 copy_config(conf, nconf);
3655 /* need to copy the sets and roa table and clear them in nconf */
3656 SIMPLEQ_CONCAT(&conf->rde_prefixsets, &nconf->rde_prefixsets);
3657 SIMPLEQ_CONCAT(&conf->rde_originsets, &nconf->rde_originsets);
3658 SIMPLEQ_CONCAT(&conf->as_sets, &nconf->as_sets);
3662 SIMPLEQ_CONCAT(&conf->l3vpns, &nconf->l3vpns);
3665 free_config(nconf);
3666 nconf = NULL;