Home | History | Annotate | Download | only in pppd

Lines Matching full:host

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