Searched defs:out_if (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ping/
H A Dping.c172 static struct if_entry out_if; /* interface argument */ variable in typeref:struct:if_entry
362 out_if.str = optarg;
364 if (inet_pton(AF_INET6, optarg, &out_if.id.addr) > 0) {
365 out_if.id_type = IF_ADDR6;
367 &out_if.id.addr) > 0) {
368 out_if.id_type = IF_ADDR;
370 out_if.id_type = IF_INDEX;
371 out_if.id.index = 0;
372 } else if ((out_if.id.index = atoi(optarg)) != 0) {
373 out_if
[all...]

Completed in 46 milliseconds