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

  /external/syslinux/gpxe/src/include/
old_tcp.h 31 extern int tcp_transaction ( unsigned long destip, unsigned int destsock,
  /external/toybox/toys/net/
netstat.c 291 char *destip = 0, *gateip = 0, *maskip = 0; local
303 if (inet_ntop(AF_INET, &dest, out, 16)) destip = out;
304 } else destip = (toys.optflags&FLAG_n) ? "0.0.0.0" : "default";
326 printf("%-15.15s %-15.15s %-16s%-6s", destip, gateip, maskip, flag_val);
  /external/toybox/toys/pending/
route.c 146 char *destip = toybuf, *gateip = toybuf+32, *maskip = toybuf+64; //ip string 16 local
150 if (!dest && !(toys.optflags & FLAG_n)) strcpy( destip, "default");
151 else if (!inet_ntop(AF_INET, &dest, destip, 32)) perror_exit("inet");
161 xprintf("%-15.15s %-15.15s %-16s%-6s", destip, gateip, maskip, flag_val);
  /frameworks/base/services/net/java/android/net/ip/
RouterAdvertisementDaemon.java 614 final InetAddress destip = dest.getAddress(); local
615 return (destip instanceof Inet6Address) &&
616 destip.isLinkLocalAddress() &&
617 (((Inet6Address) destip).getScopeId() == mIfIndex);

Completed in 413 milliseconds