root / trunk / src / dot / proxy / http_parse.h

Revision 7618, 2.6 kB (checked in by BradNeuberg, 22 months ago)

Local and remote SVN repositories somehow became out of sync and corrupted -- re-adding these in

Line 
1/*
2Copyright (c) 2003-2006 by Juliusz Chroboczek
3
4Permission is hereby granted, free of charge, to any person obtaining a copy
5of this software and associated documentation files (the "Software"), to deal
6in the Software without restriction, including without limitation the rights
7to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8copies of the Software, and to permit persons to whom the Software is
9furnished to do so, subject to the following conditions:
10
11The above copyright notice and this permission notice shall be included in
12all copies or substantial portions of the Software.
13
14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
17AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20THE SOFTWARE.
21*/
22
23typedef struct HTTPRange {
24    int from;
25    int to;
26    int full_length;
27} HTTPRangeRec, *HTTPRangePtr;
28
29extern int censorReferer;
30extern AtomPtr atomContentType, atomContentEncoding;
31
32void preinitHttpParser(void);
33void initHttpParser(void);
34int httpParseClientFirstLine(const char *buf, int offset,
35                             int *method_return,
36                             AtomPtr *url_return,
37                             int *version_return);
38int httpParseServerFirstLine(const char *buf,
39                             int *status_return,
40                             int *version_return,
41                             AtomPtr *message_return);
42
43int findEndOfHeaders(const char *buf, int from, int to, int *body_return);
44
45int httpParseHeaders(int, AtomPtr, const char *, int, HTTPRequestPtr,
46                     AtomPtr*, int*, CacheControlPtr,
47                     HTTPConditionPtr *, int*,
48                     time_t*, time_t*, time_t*, time_t*, time_t*,
49                     int*, int*, char**, AtomPtr*,
50                     HTTPRangePtr, HTTPRangePtr, char**, AtomPtr*, AtomPtr*,
51                     AtomPtr*);
52int httpFindHeader(AtomPtr header, const char *headers, int hlen,
53                   int *value_begin_return, int *value_end_return);
54int parseUrl(const char *url, int len,
55             int *x_return, int *y_return, int *port_return, int *z_return);
56int urlIsLocal(const char *url, int len);
57int urlIsSpecial(const char *url, int len);
58int parseChunkSize(const char *buf, int i, int end, int *chunk_size_return);
59int checkVia(AtomPtr, AtomPtr);
Note: See TracBrowser for help on using the browser.