mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-14 07:03:44 +01:00
194acfb51d
Parts of this C file naturally belong in dircache, dirclient, and dircommon: so, move them there.
44 lines
1.6 KiB
C
44 lines
1.6 KiB
C
/* Copyright (c) 2001 Matej Pfajfar.
|
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
|
* Copyright (c) 2007-2018, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
/**
|
|
* \file dircache.h
|
|
* \brief Header file for dircache.c.
|
|
**/
|
|
|
|
#ifndef TOR_DIRCACHE_H
|
|
#define TOR_DIRCACHE_H
|
|
|
|
int directory_handle_command(dir_connection_t *conn);
|
|
|
|
#ifdef DIRCACHE_PRIVATE
|
|
MOCK_DECL(STATIC int, directory_handle_command_get,(dir_connection_t *conn,
|
|
const char *headers,
|
|
const char *req_body,
|
|
size_t req_body_len));
|
|
MOCK_DECL(STATIC int, directory_handle_command_post,(dir_connection_t *conn,
|
|
const char *headers,
|
|
const char *body,
|
|
size_t body_len));
|
|
|
|
STATIC int handle_post_hs_descriptor(const char *url, const char *body);
|
|
enum compression_level_t;
|
|
STATIC enum compression_level_t choose_compression_level(ssize_t n_bytes);
|
|
|
|
struct get_handler_args_t;
|
|
STATIC int handle_get_hs_descriptor_v3(dir_connection_t *conn,
|
|
const struct get_handler_args_t *args);
|
|
|
|
STATIC int parse_http_url(const char *headers, char **url);
|
|
|
|
STATIC int parse_hs_version_from_post(const char *url, const char *prefix,
|
|
const char **end_pos);
|
|
|
|
STATIC unsigned parse_accept_encoding_header(const char *h);
|
|
#endif
|
|
|
|
#endif /* !defined(TOR_DIRCACHE_H) */
|