Lines Matching defs:check
50 unsigned int check = 0;
58 if(1 != Curl_inet_pton(AF_INET, network, &check))
64 unsigned int hcheck = htonl(check);
74 return (address == check);
85 unsigned char check[16];
94 if(1 != Curl_inet_pton(AF_INET6, network, check))
98 if(bytes && memcmp(address, check, bytes))
100 if(rest && !((address[bytes] ^ check[bytes]) & (0xff << (8 - rest))))
194 /* ignore trailing dots in the token to check */
220 const char *check = token;
227 /* copy the check name to a temp buffer */
228 memcpy(checkip, check, tokenlen);
230 check = checkip;
232 slash = strchr(check, '/');
239 match = Curl_cidr6_match(name, check, bits);
241 match = Curl_cidr4_match(name, check, bits);