Lines Matching defs:client
145 * colon needs to be allowed for IPV6 client
230 create_path(const char *zone, const char *host, const char *client,
246 * client and host may both be NULL, but they can't both be
249 REQUIRE( (host == NULL && client == NULL) ||
250 (host != NULL && client == NULL) ||
251 (host == NULL && client != NULL) );
265 /* if client was passed, verify that it is safe */
266 if (client != NULL && !is_safe(client))
272 else if (client != NULL)
273 len = strlen(zone) + strlen(client);
314 * When neither client or host is passed we are building a
333 /* if client is passed append xfr dir, otherwise append data dir */
334 if (client != NULL) {
337 strcat(tmpPath, client);
598 const char *client)
611 if (create_path(name, NULL, client, cd, &path) != ISC_R_SUCCESS) {