1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef HEADER_CURL_HTTP_NEGOTIATE_H
- #define HEADER_CURL_HTTP_NEGOTIATE_H
- #ifdef USE_SPNEGO
- CURLcode Curl_input_negotiate(struct connectdata *conn, bool proxy,
- const char *header);
- CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy);
- void Curl_cleanup_negotiate(struct Curl_easy *data);
- #endif
- #endif
|