2002-08-13 10:20:47 -04:00
|
|
|
#ifndef __CURL_SHARE_H
|
|
|
|
#define __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
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2005-01-24 19:06:29 -05:00
|
|
|
* Copyright (C) 1998 - 2005, 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
|
|
|
|
* are also available at http://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.
|
|
|
|
*
|
|
|
|
* $Id$
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2002-08-13 10:20:47 -04:00
|
|
|
|
|
|
|
#include "setup.h"
|
|
|
|
#include <curl/curl.h>
|
2003-08-04 11:02:42 -04:00
|
|
|
#include "cookie.h"
|
2002-08-13 10:20:47 -04:00
|
|
|
|
2003-01-08 10:50:52 -05:00
|
|
|
/* this struct is libcurl-private, don't export details */
|
|
|
|
struct Curl_share {
|
|
|
|
unsigned int specifier;
|
2003-02-04 18:48:46 -05:00
|
|
|
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;
|
2003-02-04 18:48:46 -05:00
|
|
|
|
2005-01-24 19:06:29 -05:00
|
|
|
struct curl_hash *hostcache;
|
2003-08-04 11:02:42 -04:00
|
|
|
struct CookieInfo *cookies;
|
2003-01-08 10:50:52 -05:00
|
|
|
};
|
|
|
|
|
2005-01-24 19:06:29 -05:00
|
|
|
CURLSHcode Curl_share_lock (struct SessionHandle *, curl_lock_data,
|
|
|
|
curl_lock_access);
|
|
|
|
CURLSHcode Curl_share_unlock (struct SessionHandle *, curl_lock_data);
|
2002-08-13 10:20:47 -04:00
|
|
|
|
|
|
|
#endif /* __CURL_SHARE_H */
|