2010-02-14 22:40:18 +03:00
|
|
|
#ifndef HEADER_CURL_HTTP_NEGOTIATE_H
|
|
|
|
#define HEADER_CURL_HTTP_NEGOTIATE_H
|
2003-06-10 16:22:19 +04:00
|
|
|
/***************************************************************************
|
2010-02-14 22:40:18 +03:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2003-06-10 16:22:19 +04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 15:51:48 +03:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2003-06-10 16:22:19 +04:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2020-11-04 16:02:01 +03:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2010-02-14 22:40:18 +03:00
|
|
|
*
|
2003-06-10 16:22:19 +04:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: curl
|
2022-05-17 12:16:50 +03:00
|
|
|
*
|
2003-06-10 16:22:19 +04:00
|
|
|
***************************************************************************/
|
|
|
|
|
2019-05-10 15:08:04 +03:00
|
|
|
#if !defined(CURL_DISABLE_HTTP) && defined(USE_SPNEGO)
|
2003-06-10 16:22:19 +04:00
|
|
|
|
|
|
|
/* this is for Negotiate header input */
|
2021-01-21 02:38:52 +03:00
|
|
|
CURLcode Curl_input_negotiate(struct Curl_easy *data, struct connectdata *conn,
|
|
|
|
bool proxy, const char *header);
|
2003-06-10 16:22:19 +04:00
|
|
|
|
|
|
|
/* this is for creating Negotiate header output */
|
2021-01-21 02:38:52 +03:00
|
|
|
CURLcode Curl_output_negotiate(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn, bool proxy);
|
2003-06-10 16:22:19 +04:00
|
|
|
|
2019-05-11 14:57:42 +03:00
|
|
|
void Curl_http_auth_cleanup_negotiate(struct connectdata *conn);
|
2003-06-10 16:22:19 +04:00
|
|
|
|
2020-04-27 01:33:21 +03:00
|
|
|
#else /* !CURL_DISABLE_HTTP && USE_SPNEGO */
|
|
|
|
#define Curl_http_auth_cleanup_negotiate(x)
|
|
|
|
#endif
|
2003-06-10 16:22:19 +04:00
|
|
|
|
2010-02-14 22:40:18 +03:00
|
|
|
#endif /* HEADER_CURL_HTTP_NEGOTIATE_H */
|