~chtsanti/squid/icap-max-connections

« back to all changes in this revision

Viewing changes to src/HttpHeader.h

  • Committer: Christos Tsantilas
  • Date: 2009-02-18 22:18:35 UTC
  • mfrom: (9294.1.215 trunk)
  • Revision ID: chtsanti@users.sourceforge.net-20090218221835-lfxxe3bs8uhu0b1h
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#ifndef SQUID_HTTPHEADER_H
34
34
#define SQUID_HTTPHEADER_H
35
35
 
36
 
 
37
36
/* because we pass a spec by value */
38
37
#include "HttpHeaderRange.h"
39
38
/* HttpHeader holds a HttpHeaderMask */
40
39
#include "HttpHeaderMask.h"
41
40
 
 
41
 
 
42
/* class forward declarations */
 
43
class HttpVersion;
 
44
class HttpHdrContRange;
 
45
class HttpHdrCc;
 
46
class HttpHdrSc;
 
47
class HttpHdrRange;
 
48
class String;
 
49
 
 
50
 
42
51
/* constant attributes of http header fields */
43
52
 
44
53
/** recognized or "known" header fields; @?@ add more! */
149
158
    field_type type;
150
159
};
151
160
 
152
 
class HttpVersion;
153
 
 
154
 
class HttpHdrContRange;
155
 
 
156
 
class HttpHdrCc;
157
 
 
158
 
class HttpHdrSc;
159
161
 
160
162
/** Iteration for headers; use HttpHeaderPos as opaque type, do not interpret */
161
163
typedef ssize_t HttpHeaderPos;