2011-09-03 10:06:10 -04:00
|
|
|
#ifndef HEADER_CURL_SPLAY_H
|
|
|
|
#define HEADER_CURL_SPLAY_H
|
2006-04-10 11:00:53 -04:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
headers: Remove no longer exported functions
There were a leftover few prototypes of Curl_ functions that we used to
export but no longer do, this removes those prototypes and cleans up any
comments still referring to them.
Curl_write32_le(), Curl_strcpy_url(), Curl_strlen_url(), Curl_up_free()
Curl_concat_url(), Curl_detach_connnection(), Curl_http_setup_conn()
were made static in 05b100aee247bb9bec8e9a1b0166496aa4248d1c.
Curl_http_perhapsrewind() made static in 574aecee208f79d391f10d57520b3.
For the remainder, I didn't trawl the Git logs hard enough to capture
their exact time of deletion, but they were all gone: Curl_splayprint(),
Curl_http2_send_request(), Curl_global_host_cache_dtor(),
Curl_scan_cache_used(), Curl_hostcache_destroy(), Curl_second_connect(),
Curl_http_auth_stage() and Curl_close_connections().
Closes #4096
Reviewed-by: Daniel Stenberg <daniel@haxx.se>
2019-07-10 13:26:40 -04:00
|
|
|
* Copyright (C) 1997 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2006-04-10 11:00:53 -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 08:02:01 -05:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2006-04-10 11:00:53 -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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2017-07-28 09:49:36 -04:00
|
|
|
#include "timeval.h"
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
struct Curl_tree {
|
|
|
|
struct Curl_tree *smaller; /* smaller node */
|
|
|
|
struct Curl_tree *larger; /* larger node */
|
2017-03-24 04:43:27 -04:00
|
|
|
struct Curl_tree *samen; /* points to the next node with identical key */
|
|
|
|
struct Curl_tree *samep; /* points to the prev node with identical key */
|
2017-07-28 09:49:36 -04:00
|
|
|
struct curltime key; /* this node's "sort" key */
|
2006-04-10 11:00:53 -04:00
|
|
|
void *payload; /* data the splay code doesn't care about */
|
|
|
|
};
|
|
|
|
|
2017-07-28 09:49:36 -04:00
|
|
|
struct Curl_tree *Curl_splay(struct curltime i,
|
2008-05-07 11:41:41 -04:00
|
|
|
struct Curl_tree *t);
|
|
|
|
|
2017-07-28 09:49:36 -04:00
|
|
|
struct Curl_tree *Curl_splayinsert(struct curltime key,
|
2008-05-07 11:41:41 -04:00
|
|
|
struct Curl_tree *t,
|
2006-07-15 14:57:51 -04:00
|
|
|
struct Curl_tree *newnode);
|
2008-05-07 11:41:41 -04:00
|
|
|
|
2006-05-27 18:26:41 -04:00
|
|
|
#if 0
|
2017-07-28 09:49:36 -04:00
|
|
|
struct Curl_tree *Curl_splayremove(struct curltime key,
|
2008-05-07 11:41:41 -04:00
|
|
|
struct Curl_tree *t,
|
2006-04-10 11:00:53 -04:00
|
|
|
struct Curl_tree **removed);
|
2006-05-27 18:26:41 -04:00
|
|
|
#endif
|
|
|
|
|
2017-07-28 09:49:36 -04:00
|
|
|
struct Curl_tree *Curl_splaygetbest(struct curltime key,
|
2008-05-07 11:41:41 -04:00
|
|
|
struct Curl_tree *t,
|
2006-04-10 11:00:53 -04:00
|
|
|
struct Curl_tree **removed);
|
2008-05-07 11:41:41 -04:00
|
|
|
|
2006-05-27 18:26:41 -04:00
|
|
|
int Curl_splayremovebyaddr(struct Curl_tree *t,
|
2007-09-26 21:45:22 -04:00
|
|
|
struct Curl_tree *removenode,
|
2006-05-27 18:26:41 -04:00
|
|
|
struct Curl_tree **newroot);
|
2006-04-10 11:00:53 -04:00
|
|
|
|
2017-09-12 03:29:01 -04:00
|
|
|
#define Curl_splaycomparekeys(i,j) ( ((i.tv_sec) < (j.tv_sec)) ? -1 : \
|
|
|
|
( ((i.tv_sec) > (j.tv_sec)) ? 1 : \
|
2008-05-07 11:41:41 -04:00
|
|
|
( ((i.tv_usec) < (j.tv_usec)) ? -1 : \
|
2016-04-03 14:28:34 -04:00
|
|
|
( ((i.tv_usec) > (j.tv_usec)) ? 1 : 0))))
|
2008-05-07 11:41:41 -04:00
|
|
|
|
2011-09-03 10:06:10 -04:00
|
|
|
#endif /* HEADER_CURL_SPLAY_H */
|