2012-01-18 17:39:30 -05:00
|
|
|
#ifndef HEADER_CURL_SHARE_H
|
|
|
|
#define HEADER_CURL_SHARE_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2005-01-24 19:06:29 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2002-08-13 10:20:47 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2017-11-01 18:37:45 -04:00
|
|
|
* Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2002-08-13 10:20:47 -04:00
|
|
|
*
|
2002-09-03 07:52:59 -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.
|
2005-01-24 19:06:29 -05:00
|
|
|
*
|
2002-08-13 10:20:47 -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
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2002-08-13 10:20:47 -04:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2002-08-13 10:20:47 -04:00
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2002-08-13 10:20:47 -04:00
|
|
|
#include <curl/curl.h>
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "cookie.h"
|
|
|
|
#include "urldata.h"
|
2017-11-01 18:37:45 -04:00
|
|
|
#include "conncache.h"
|
2002-08-13 10:20:47 -04:00
|
|
|
|
2006-04-26 13:11:05 -04:00
|
|
|
/* SalfordC says "A structure member may not be volatile". Hence:
|
|
|
|
*/
|
|
|
|
#ifdef __SALFORDC__
|
|
|
|
#define CURL_VOLATILE
|
|
|
|
#else
|
|
|
|
#define CURL_VOLATILE volatile
|
|
|
|
#endif
|
|
|
|
|
2003-01-08 10:50:52 -05:00
|
|
|
/* this struct is libcurl-private, don't export details */
|
|
|
|
struct Curl_share {
|
|
|
|
unsigned int specifier;
|
2006-04-26 13:11:05 -04:00
|
|
|
CURL_VOLATILE unsigned int dirty;
|
2005-01-24 19:06:29 -05:00
|
|
|
|
2003-01-08 10:50:52 -05:00
|
|
|
curl_lock_function lockfunc;
|
|
|
|
curl_unlock_function unlockfunc;
|
|
|
|
void *clientdata;
|
2017-11-01 18:37:45 -04:00
|
|
|
struct conncache conn_cache;
|
2015-05-12 03:46:53 -04:00
|
|
|
struct curl_hash hostcache;
|
2011-10-03 16:32:36 -04:00
|
|
|
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES)
|
2003-08-04 11:02:42 -04:00
|
|
|
struct CookieInfo *cookies;
|
2011-10-03 16:32:36 -04:00
|
|
|
#endif
|
2011-09-20 11:43:54 -04:00
|
|
|
|
|
|
|
struct curl_ssl_session *sslsession;
|
2012-01-18 17:39:30 -05:00
|
|
|
size_t max_ssl_sessions;
|
2011-11-17 17:34:38 -05:00
|
|
|
long sessionage;
|
2003-01-08 10:50:52 -05:00
|
|
|
};
|
|
|
|
|
2016-12-13 17:34:59 -05:00
|
|
|
CURLSHcode Curl_share_lock(struct Curl_easy *, curl_lock_data,
|
|
|
|
curl_lock_access);
|
|
|
|
CURLSHcode Curl_share_unlock(struct Curl_easy *, curl_lock_data);
|
2002-08-13 10:20:47 -04:00
|
|
|
|
2012-01-18 17:39:30 -05:00
|
|
|
#endif /* HEADER_CURL_SHARE_H */
|