source: trunk/third/libghttp/ghttp_constants.h @ 15592

Revision 15592, 3.4 KB checked in by ghudson, 24 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r15591, which included commits to RCS files with non-trunk default branches.
Line 
1/*
2 * ghttp_constants.h -- definitions for char constants that people
3 *                      might want to use
4 * Created: Christopher Blizzard <blizzard@appliedtheory.com>
5 *
6 * Copyright (C) 1998 Free Software Foundation
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 * Library General Public License for more details.
17 *
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library; if not, write to the Free
20 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23#ifndef GHTTP_CONSTANTS_H
24#define GHTTP_CONSTANTS_H
25
26#ifdef __cplusplus
27extern "C" {
28#endif /* __cplusplus */
29
30extern const char http_hdr_Allow[];
31extern const char http_hdr_Content_Encoding[];
32extern const char http_hdr_Content_Language[];
33extern const char http_hdr_Content_Length[];
34extern const char http_hdr_Content_Location[];
35extern const char http_hdr_Content_MD5[];
36extern const char http_hdr_Content_Range[];
37extern const char http_hdr_Content_Type[];
38extern const char http_hdr_Expires[];
39extern const char http_hdr_Last_Modified[];
40
41/* general headers */
42
43extern const char http_hdr_Cache_Control[];
44extern const char http_hdr_Connection[];
45extern const char http_hdr_Date[];
46extern const char http_hdr_Pragma[];
47extern const char http_hdr_Transfer_Encoding[];
48extern const char http_hdr_Update[];
49extern const char http_hdr_Trailer[];
50extern const char http_hdr_Via[];
51
52/* request headers */
53
54extern const char http_hdr_Accept[];
55extern const char http_hdr_Accept_Charset[];
56extern const char http_hdr_Accept_Encoding[];
57extern const char http_hdr_Accept_Language[];
58extern const char http_hdr_Authorization[];
59extern const char http_hdr_Expect[];
60extern const char http_hdr_From[];
61extern const char http_hdr_Host[];
62extern const char http_hdr_If_Modified_Since[];
63extern const char http_hdr_If_Match[];
64extern const char http_hdr_If_None_Match[];
65extern const char http_hdr_If_Range[];
66extern const char http_hdr_If_Unmodified_Since[];
67extern const char http_hdr_Max_Forwards[];
68extern const char http_hdr_Proxy_Authorization[];
69extern const char http_hdr_Range[];
70extern const char http_hdr_Referrer[];
71extern const char http_hdr_TE[];
72extern const char http_hdr_User_Agent[];
73
74/* response headers */
75
76extern const char http_hdr_Accept_Ranges[];
77extern const char http_hdr_Age[];
78extern const char http_hdr_ETag[];
79extern const char http_hdr_Location[];
80extern const char http_hdr_Retry_After[];
81extern const char http_hdr_Server[];
82extern const char http_hdr_Vary[];
83extern const char http_hdr_Warning[];
84extern const char http_hdr_WWW_Authenticate[];
85
86/* Other headers */
87
88extern const char http_hdr_Set_Cookie[];
89
90/* WebDAV headers */
91
92extern const char http_hdr_DAV[];
93extern const char http_hdr_Depth[];
94extern const char http_hdr_Destination[];
95extern const char http_hdr_If[];
96extern const char http_hdr_Lock_Token[];
97extern const char http_hdr_Overwrite[];
98extern const char http_hdr_Status_URI[];
99extern const char http_hdr_Timeout[];
100
101#ifdef __cplusplus
102}
103#endif /* __cplusplus */
104
105#endif /* GHTTP_CONSTANTS_H */
Note: See TracBrowser for help on using the repository browser.