mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 21:53:48 +01:00
25 lines
815 B
C
25 lines
815 B
C
/* Copyright (c) 2001 Matej Pfajfar.
|
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
|
* Copyright (c) 2007-2017, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
#ifndef TOR_PROTO_HTTP_H
|
|
#define TOR_PROTO_HTTP_H
|
|
|
|
struct buf_t;
|
|
|
|
int fetch_from_buf_http(struct buf_t *buf,
|
|
char **headers_out, size_t max_headerlen,
|
|
char **body_out, size_t *body_used, size_t max_bodylen,
|
|
int force_complete);
|
|
int peek_buf_has_http_command(const struct buf_t *buf);
|
|
|
|
#ifdef PROTO_HTTP_PRIVATE
|
|
STATIC int buf_http_find_content_length(const char *headers, size_t headerlen,
|
|
size_t *result_out);
|
|
#endif
|
|
|
|
#endif /* !defined(TOR_PROTO_HTTP_H) */
|
|
|