12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef HEADER_TOOL_CURL_HOSTCHECK_H
- #define HEADER_TOOL_CURL_HOSTCHECK_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define CURL_HOST_NOMATCH 0
- #define CURL_HOST_MATCH 1
- int Tool_Curl_cert_hostcheck(const char *match_pattern, const char *hostname);
- #ifdef __cplusplus
- }
- #endif
- #endif
|