Lines Matching defs:host
59 * @host: the host name or path (for AF_UNIX) to connect to.
61 * @bindhost: source host or path (for AF_UNIX).
68 * This will create a socket and use it to connect to a host:port, or if
69 * family == AF_UNIX, to the path found in host.
71 * If the host has more than one address, it will try them one by one until
77 int init_client(int *sock, const char *host, const char *port,
91 ret = BIO_lookup_ex(host, port, BIO_LOOKUP_CLIENT, family, type, protocol,
242 * @host: the host name or path (for AF_UNIX) to connect to.
253 * This will create a socket and use it to listen to a host:port, or if
254 * family == AF_UNIX, to the path found in host, then start accepting
259 int do_server(int *accept_sock, const char *host, const char *port,
278 if (!BIO_lookup_ex(host, port, BIO_LOOKUP_SERVER, family, type, protocol,
427 unlink(host);