Lines Matching defs:client
66 char *client;
126 * Default is to specify a client hostname or address. When user@host is
129 if ((client = split_at(argv[optind + 1], '@')) != 0) {
132 client = argv[optind + 1];
208 * If a client address is specified, we simulate the effect of client
211 res0 = find_inet_addr(client, AI_NUMERICHOST);
222 * Perhaps they are testing special client hostname patterns that aren't
225 if (NOT_INADDR(client) && HOSTNAME_KNOWN(client) == 0) {
226 request_set(&request, RQ_CLIENT_NAME, client, 0);
232 * Otherwise, assume that a client hostname is specified, and insist that
234 * in real life the client address is available (at least with IP). Let
236 * using the request.client structure as a cache for host name and
239 if ((res0 = find_inet_addr(client, 0)) == NULL)
252 * Force evaluation of client host name and address. Host name
256 if (STR_EQ(eval_hostname(request.client), unknown))
258 eval_hostaddr(request.client));
288 /* Try out a (server,client) pair */
297 expand("client: hostname", "%n", request);
298 expand("client: address ", "%a", request);
299 expand("client: username", "%u", request);
321 if (STR_EQ(eval_hostname(request->client), paranoid)) {