Home
last modified time | relevance | path

Searched refs:destip (Results 1 – 3 of 3) sorted by relevance

/external/toybox/toys/net/
Dnetstat.c291 char *destip = 0, *gateip = 0, *maskip = 0; in display_routes() local
303 if (inet_ntop(AF_INET, &dest, out, 16)) destip = out; in display_routes()
304 } else destip = (toys.optflags&FLAG_n) ? "0.0.0.0" : "default"; in display_routes()
326 printf("%-15.15s %-15.15s %-16s%-6s", destip, gateip, maskip, flag_val); in display_routes()
/external/toybox/toys/pending/
Droute.c146 char *destip = toybuf, *gateip = toybuf+32, *maskip = toybuf+64; //ip string 16 in display_routes() local
150 if (!dest && !(toys.optflags & FLAG_n)) strcpy( destip, "default"); in display_routes()
151 else if (!inet_ntop(AF_INET, &dest, destip, 32)) perror_exit("inet"); in display_routes()
161 xprintf("%-15.15s %-15.15s %-16s%-6s", destip, gateip, maskip, flag_val); in display_routes()
/external/syslinux/gpxe/src/include/
Dold_tcp.h31 extern int tcp_transaction ( unsigned long destip, unsigned int destsock,