HomeSort by relevance Sort by last modified time
    Searched refs:if_tmp (Results 1 - 2 of 2) sorted by null

  /external/dnsmasq/src/
dnsmasq.c 77 struct iname *if_tmp; local
180 for (if_tmp = daemon->if_names; if_tmp; if_tmp = if_tmp->next)
181 if (if_tmp->name && !if_tmp->used)
182 die(_("unknown interface %s"), if_tmp->name, EC_BADNET);
184 for (if_tmp = daemon->if_addrs; if_tmp; if_tmp = if_tmp->next
    [all...]
network.c 927 struct iname *if_tmp; local
949 if_tmp = safe_malloc(sizeof(struct iname));
950 memset(if_tmp, 0, sizeof(struct iname));
951 if ((if_tmp->name = strdup(interface)) == NULL) {
954 if_tmp->next = daemon->if_names;
955 daemon->if_names = if_tmp;
962 for (if_tmp = daemon->if_names; if_tmp; if_tmp = if_tmp->next)
    [all...]

Completed in 88 milliseconds