Home | History | Annotate | Download | only in ldpd

Lines Matching defs:conf_if

397 	struct conf_interface *conf_if;
401 if ((conf_if = calloc(1, sizeof(*conf_if))) == NULL)
404 strlcpy(conf_if->if_name, ifname, IF_NAMESIZE);
405 SLIST_INSERT_HEAD(&coifs_head, conf_if, iflist);
407 return fill_info(conf_if, (int (*)(void *, char *))Ginterface);
411 Ginterface(struct conf_interface *conf_if, char *buf)
418 return intf_commands[i].func(conf_if, buf +
426 Itaddr(struct conf_interface *conf_if, char *buf)
428 if (inet_pton(AF_INET, buf, &conf_if->tr_addr) != 1)
435 Ipassive(struct conf_interface *conf_if, char *buf)
437 conf_if->passive = 1;