1234567891011121314151617181920212223242526272829303132 |
- #ifndef HEADER_CURL_HOSTCHECK_H
- #define HEADER_CURL_HOSTCHECK_H
- #include <curl/curl.h>
- #define CURL_HOST_NOMATCH 0
- #define CURL_HOST_MATCH 1
- int Curl_cert_hostcheck(const char *match_pattern, const char *hostname);
- #endif
|