Lines Matching defs:host
1 /* traceroute - trace the route to "host".
17 [-s SRC_IP] [-t TOS] [-w WAIT_SEC] [-g GATEWAY] [-i IFACE] [-z PAUSE_MSEC] HOST [BYTES]
20 [-i IFACE] HOST [BYTES]
22 Trace the route to HOST
32 -r Bypass routing tables, send directly to HOST
180 static void resolve_addr(char *host, int family, int type, int proto, void *sock)
190 ret = getaddrinfo(host, NULL, &hint, &info);
191 if (ret || !info) error_exit("bad address: %s ", host);
299 char host[NI_MAXHOST];
301 sizeof(struct sockaddr_in), host, NI_MAXHOST, NULL, 0, 0))
302 xprintf(" %s (", host);
414 char host[NI_MAXHOST];
416 sizeof(from), host, sizeof(host), NULL, 0, 0))
417 xprintf(" %s (", host);
621 perror_exit("can't connect to remote host");