]> git.ipfire.org Git - thirdparty/squid.git/blame - src/client_side_request.h
Bootstrapped
[thirdparty/squid.git] / src / client_side_request.h
CommitLineData
c8be6d7b 1
2/*
b51aec66 3 * $Id: client_side_request.h,v 1.10 2003/05/11 13:53:03 hno Exp $
c8be6d7b 4 *
5 *
6 * SQUID Web Proxy Cache http://www.squid-cache.org/
7 * ----------------------------------------------------------
8 *
9 * Squid is the result of efforts by numerous individuals from
10 * the Internet community; see the CONTRIBUTORS file for full
11 * details. Many organizations have provided support for Squid's
12 * development; see the SPONSORS file for full details. Squid is
13 * Copyrighted (C) 2001 by the Regents of the University of
14 * California; see the COPYRIGHT file for full details. Squid
15 * incorporates software developed and/or copyrighted by other
16 * sources; see the CREDITS file for full details.
17 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
31 *
32 */
33
34#ifndef SQUID_CLIENTSIDEREQUEST_H
35#define SQUID_CLIENTSIDEREQUEST_H
36
528b2c61 37#include "HttpHeader.h"
38#include "clientStream.h"
39
c8be6d7b 40/* client_side_request.c - client side request related routines (pure logic) */
0655fa4d 41extern int clientBeginRequest(method_t, char const *, CSCB *, CSD *, ClientStreamData, HttpHeader const *, char *, size_t);
c8be6d7b 42
90f396d5 43class MemObject;
62e76326 44
528b2c61 45typedef class ClientHttpRequest clientHttpRequest;
46
62e76326 47class ClientHttpRequest
48{
49
528b2c61 50public:
51 void *operator new (size_t);
52 void operator delete (void *);
53 void deleteSelf() const;
54
55 ClientHttpRequest();
56 ~ClientHttpRequest();
57 /* Not implemented - present to prevent synthetic operations */
58 ClientHttpRequest(ClientHttpRequest const &);
59 ClientHttpRequest& operator=(ClientHttpRequest const &);
62e76326 60
528b2c61 61 String rangeBoundaryStr() const;
62 void freeResources();
63 void updateCounters();
64 void logRequest();
65 MemObject * memObject() const;
66 bool multipartRangeRequest() const;
8e2745f4 67 void processRequest();
68 void httpStart();
0655fa4d 69 bool onlyIfCached()const;
70 bool gotEnough() const;
71
528b2c61 72 ConnStateData *conn;
73 request_t *request; /* Parsed URL ... */
74 char *uri;
75 char *log_uri;
62e76326 76
77 struct
78 {
79 off_t offset;
80 size_t size;
81 size_t headers_sz;
82 }
83
84 out;
528b2c61 85 HttpHdrRangeIter range_iter; /* data for iterating thru range specs */
86 size_t req_sz; /* raw request size on input, not current request size */
87 StoreEntry *entry;
528b2c61 88 log_type logType;
62e76326 89
528b2c61 90 struct timeval start;
91 http_version_t http_ver;
92 AccessLogEntry al;
62e76326 93
94 struct
95 {
96
97unsigned int accel:
98 1;
99
d048c262 100unsigned int transparent:
101 1;
102
62e76326 103unsigned int internal:
104 1;
105
106unsigned int done_copying:
107 1;
108
109unsigned int purging:
110 1;
111 }
112
113 flags;
114
115 struct
116 {
117 http_status status;
118 char *location;
119 }
120
121 redirect;
528b2c61 122 dlink_node active;
123 dlink_list client_stream;
124 int mRangeCLen();
62e76326 125
b51aec66 126 ssize_t maxReplyBodySize() const;
127 void maxReplyBodySize(ssize_t size);
128 bool isReplyBodyTooLarge(ssize_t len) const;
129
528b2c61 130private:
b51aec66 131 ssize_t maxReplyBodySize_;
528b2c61 132 CBDATA_CLASS(ClientHttpRequest);
133};
134
135/* client http based routines */
136SQUIDCEXTERN char *clientConstructTraceEcho(clientHttpRequest *);
4fb35c3c 137SQUIDCEXTERN ACLChecklist *clientAclChecklistCreate(const acl_access * acl, const clientHttpRequest * http);
528b2c61 138SQUIDCEXTERN int clientHttpRequestStatus(int fd, clientHttpRequest const *http);
8e2745f4 139SQUIDCEXTERN void clientAccessCheck(ClientHttpRequest *);
528b2c61 140
141/* ones that should be elsewhere */
142SQUIDCEXTERN void redirectStart(clientHttpRequest *, RH *, void *);
143
144SQUIDCEXTERN void sslStart(clientHttpRequest *, size_t *, int *);
145
c8be6d7b 146#endif /* SQUID_CLIENTSIDEREQUEST_H */