Lines Matching defs:match
71 * an IP address and not wildcard match on such names.
73 * Only match on "*" being used for the leftmost label, not "a*", "a*b" nor
76 * Return TRUE on a match. FALSE if not.
102 /* detect IP address as hostname and fail the match if so */
107 match. */
125 * Curl_cert_hostcheck() returns TRUE if a match and FALSE if not.
127 bool Curl_cert_hostcheck(const char *match, size_t matchlen,
130 if(match && *match && hostname && *hostname)
131 return hostmatch(hostname, hostlen, match, matchlen);