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