Home | History | Annotate | Download | only in pppd

Lines Matching defs:host

202       "Send and receive over socket, arg is host:port",
869 * host and port.
877 u_int32_t host;
881 /* parse host:port and resolve host to an IP address */
886 error("Can't parse host:port for socket destination");
890 host = inet_addr(dest);
891 if (host == (u_int32_t) -1) {
894 error("%s: unknown host in socket option", dest);
898 host = *(u_int32_t *)(hent->h_addr_list[0]);
911 sad.sin_addr.s_addr = host;