Lines Matching defs:nconf
384 static struct ldpd_conf *nconf;
478 if ((nconf = malloc(sizeof(struct ldpd_conf))) ==
481 memcpy(nconf, imsg.data, sizeof(struct ldpd_conf));
483 LIST_INIT(&nconf->iface_list);
484 LIST_INIT(&nconf->tnbr_list);
485 LIST_INIT(&nconf->nbrp_list);
486 LIST_INIT(&nconf->l2vpn_list);
487 LIST_INIT(&nconf->auth_list);
500 LIST_INSERT_HEAD(&nconf->iface_list, niface, entry);
507 LIST_INSERT_HEAD(&nconf->tnbr_list, ntnbr, entry);
514 LIST_INSERT_HEAD(&nconf->nbrp_list, nnbrp, entry);
524 LIST_INSERT_HEAD(&nconf->l2vpn_list, nl2vpn, entry);
551 LIST_INSERT_HEAD(&nconf->auth_list, auth, entry);
555 merge_config(ldeconf, nconf);
556 nconf = NULL;