12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef HEADER_CURL_NTLM_H
- #define HEADER_CURL_NTLM_H
- #include "curl_setup.h"
- #if !defined(CURL_DISABLE_HTTP) && defined(USE_NTLM)
- CURLcode Curl_input_ntlm(struct connectdata *conn, bool proxy,
- const char *header);
- CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy);
- void Curl_http_ntlm_cleanup(struct connectdata *conn);
- #endif
- #endif
|