Searched defs:found_domain (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/lib/nwamd/
H A Dconditions.c240 const char *found_domain)
246 len_f = found_domain == NULL ? 0 : strlen(found_domain);
248 /* convert target_domain and found_domain to lowercase for strstr() */
254 found[i] = tolower(found_domain[i]);
259 return (found_domain != NULL && strcmp(found, target) == 0);
261 return (found_domain == NULL || strcmp(found, target) != 0);
263 return (found_domain != NULL && strstr(found, target) != NULL);
265 return (found_domain == NULL || strstr(found, target) == NULL);
239 test_condition_domain(nwam_condition_t condition, const char *target_domain, const char *found_domain) argument

Completed in 60 milliseconds