Lines Matching refs:netid
664 new->netid = NULL; in parse_dhcp_opt()
696 new->netid = opt_malloc(sizeof(struct dhcp_netid)); in parse_dhcp_opt()
699 new->netid->net = opt_string_alloc(arg + 4); in parse_dhcp_opt()
701 new->netid->net = opt_string_alloc(arg); in parse_dhcp_opt()
702 new->netid->next = np; in parse_dhcp_opt()
703 np = new->netid; in parse_dhcp_opt()
886 if ((new->flags&(DHOPT_ENCAPSULATE | DHOPT_VENDOR)) || !new->netid || new->netid->next) in parse_dhcp_opt()
1467 new->netid.net = NULL; in one_opt()
1489 if (new->netid.net) in one_opt()
1492 new->netid.net = opt_string_alloc(arg); in one_opt()
1615 if ((new->netid.net = opt_malloc(len))) { in one_opt()
1617 strcpy(new->netid.net, arg + 4); in one_opt()
1618 unhide_metas(new->netid.net); in one_opt()
1733 new->netid = id; in one_opt()
1747 new->netid = NULL; in one_opt()
1753 nn->next = new->netid; in one_opt()
1754 new->netid = nn; in one_opt()
1792 new->netid = NULL; in one_opt()
1798 nn->next = new->netid; in one_opt()
1799 new->netid = nn; in one_opt()
1857 new->netid.net = opt_string_alloc(arg + 4); in one_opt()
1859 new->netid.net = opt_string_alloc(arg); in one_opt()
1881 new->netid.net = opt_string_alloc(arg + 4); in one_opt()
1883 new->netid.net = opt_string_alloc(arg); in one_opt()
2390 if (configs->flags & CONFIG_NETID) free(configs->netid.net); in reread_dhcp()
2413 for (id = opts->netid; id; id = next) { in reread_dhcp()