forked from versat/cntlm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
http.h
50 lines (43 loc) · 1.85 KB
/
http.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* HTTP handling routines and related socket stuff for CNTLM
*
* CNTLM is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* CNTLM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
* St, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2007 David Kubicek
*
*/
#ifndef _HTTP_H
#define _HTTP_H
#include <stdint.h>
#include "utils.h"
#include "auth.h"
/*
* A couple of shortcuts for if statements
*/
#define CONNECT(data) ((data) && (data)->req && !strcasecmp("CONNECT", (data)->method))
#define HEAD(data) ((data) && (data)->req && !strcasecmp("HEAD", (data)->method))
#define GET(data) ((data) && (data)->req && !strcasecmp("GET", (data)->method))
typedef long long int length_t;
extern int is_http_header(const char *src);
extern char *get_http_header_name(const char *src);
extern char *get_http_header_value(const char *src);
extern int http_parse_basic(hlist_const_t headers, const char *header, struct auth_s *tcreds);
extern int headers_recv(int fd, rr_data_t data);
extern int headers_send(int fd, rr_data_const_t data);
extern int tunnel(int cd, int sd);
extern length_t http_has_body(rr_data_const_t request, rr_data_const_t response);
extern int http_body_send(int writefd, int readfd, rr_data_const_t request, rr_data_const_t response);
extern int http_body_drop(int fd, rr_data_const_t response);
#endif /* _HTTP_H */