2010-02-14 14:40:18 -05:00
|
|
|
#ifndef HEADER_CURL_HTTP_NEGOTIATE_H
|
|
|
|
#define HEADER_CURL_HTTP_NEGOTIATE_H
|
2003-06-10 08:22:19 -04:00
|
|
|
/***************************************************************************
|
2010-02-14 14:40:18 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2003-06-10 08:22:19 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2015-01-17 06:56:27 -05:00
|
|
|
* Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2003-06-10 08: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
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2010-02-14 14:40:18 -05:00
|
|
|
*
|
2003-06-10 08: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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2014-07-21 03:53:46 -04:00
|
|
|
#ifdef USE_SPNEGO
|
2003-06-10 08:22:19 -04:00
|
|
|
|
|
|
|
/* this is for Negotiate header input */
|
2015-01-17 06:56:27 -05:00
|
|
|
CURLcode Curl_input_negotiate(struct connectdata *conn, bool proxy,
|
|
|
|
const char *header);
|
2003-06-10 08:22:19 -04:00
|
|
|
|
|
|
|
/* this is for creating Negotiate header output */
|
2007-09-21 07:05:31 -04:00
|
|
|
CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy);
|
2003-06-10 08:22:19 -04:00
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
void Curl_cleanup_negotiate(struct Curl_easy *data);
|
2003-06-10 08:22:19 -04:00
|
|
|
|
2014-07-21 03:53:46 -04:00
|
|
|
#endif /* USE_SPNEGO */
|
2003-06-10 08:22:19 -04:00
|
|
|
|
2010-02-14 14:40:18 -05:00
|
|
|
#endif /* HEADER_CURL_HTTP_NEGOTIATE_H */
|