Lines Matching defs:host
191 char **protocol, char **host, char **port)
196 * as "protocol/host:port[/catalogue]". Note that the catologue
201 * as "protocol/host:port".
204 * If the protocol part and host part are missing, then assume local.
256 *host = NULL;
270 /* There is neither a protocol or host specified */
277 mybuf = tmpptr; /* reset to the beginning of the host ptr */
299 /* Get the host part */
306 *host = NULL;
371 *host = NULL;
377 if ((*host = strdup (_host)) == NULL)
381 *host = NULL;
392 free (*host);
393 *host = NULL;
416 char *protocol = NULL, *host = NULL, *port = NULL;
432 if (TRANS(ParseAddress) (address, &protocol, &host, &port) == 0)
446 free (host);
457 ciptr = thistrans->OpenCOTSClient(thistrans, protocol, host, port);
462 ciptr = thistrans->OpenCOTSServer(thistrans, protocol, host, port);
474 protocol, host, port);
477 free (host);
486 free (host);
856 char *host;
862 if (TRANS(ParseAddress) (address, &protocol, &host, &port) == 0)
870 if (!host) host=strdup("");
878 if (host) free (host);
882 ret = ciptr->transptr->Connect (ciptr, host, port);
885 if (host) free (host);