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 897 struct iname *if_tmp; local
919 if_tmp = safe_malloc(sizeof(struct iname));
920 memset(if_tmp, sizeof(struct iname), 0);
921 if ((if_tmp->name = strdup(interface)) == NULL) {
924 if_tmp->next = daemon->if_names;
925 daemon->if_names = if_tmp;
932 for (if_tmp = daemon->if_names; if_tmp; if_tmp = if_tmp->next)
    [all...]

Completed in 43 milliseconds