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

  /external/toybox/toys/net/
netstat.c 291 char *destip = 0, *gateip = 0, *maskip = 0; local
314 if (inet_ntop(AF_INET, &mask, out, 16)) maskip = out;
315 else maskip = "?";
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
156 if (!inet_ntop(AF_INET, &mask, maskip, 32)) perror_exit("inet");
161 xprintf("%-15.15s %-15.15s %-16s%-6s", destip, gateip, maskip, flag_val);

Completed in 422 milliseconds