OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:if_tmp
(Results
1 - 2
of
2
) sorted by null
/external/dnsmasq/src/
dnsmasq.c
127
struct iname *
if_tmp
;
local
205
for (
if_tmp
= daemon->if_names;
if_tmp
;
if_tmp
=
if_tmp
->next)
206
if (
if_tmp
->name && !
if_tmp
->used)
207
die(_("unknown interface %s"),
if_tmp
->name, EC_BADNET);
209
for (
if_tmp
= daemon->if_addrs;
if_tmp
; if_tmp = if_tmp->next
[
all
...]
network.c
931
struct iname *
if_tmp
;
local
959
if_tmp
= safe_malloc(sizeof(struct iname));
960
memset(
if_tmp
, 0, sizeof(struct iname));
961
if ((
if_tmp
->name = strdup(interface)) == NULL) {
964
if_tmp
->next = daemon->if_names;
965
daemon->if_names =
if_tmp
;
977
for (
if_tmp
= daemon->if_names;
if_tmp
;
if_tmp
=
if_tmp
->next)
[
all
...]
Completed in 71 milliseconds