File: HttpApi.cs

package info (click to toggle)
mono 6.8.0.105%2Bdfsg-3.3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,284,512 kB
  • sloc: cs: 11,172,132; xml: 2,850,069; ansic: 671,653; cpp: 122,091; perl: 59,366; javascript: 30,841; asm: 22,168; makefile: 20,093; sh: 15,020; python: 4,827; pascal: 925; sql: 859; sed: 16; php: 1
file content (164 lines) | stat: -rw-r--r-- 4,909 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
using System.Collections;

namespace System.Net
{
	static partial class UnsafeNclNativeMethods
	{
		internal static unsafe class HttpApi 
		{
			const int HttpHeaderRequestMaximum  = (int)HttpRequestHeader.UserAgent + 1;
			const int HttpHeaderResponseMaximum = (int)HttpResponseHeader.WwwAuthenticate + 1;

			internal static class HTTP_REQUEST_HEADER_ID {
				internal static string ToString(int position) {
					return m_Strings[position];
				}

				private static string[] m_Strings = {
					"Cache-Control",
					"Connection",
					"Date",
					"Keep-Alive",
					"Pragma",
					"Trailer",
					"Transfer-Encoding",
					"Upgrade",
					"Via",
					"Warning",

					"Allow",
					"Content-Length",
					"Content-Type",
					"Content-Encoding",
					"Content-Language",
					"Content-Location",
					"Content-MD5",
					"Content-Range",
					"Expires",
					"Last-Modified",

					"Accept",
					"Accept-Charset",
					"Accept-Encoding",
					"Accept-Language",
					"Authorization",
					"Cookie",
					"Expect",
					"From",
					"Host",
					"If-Match",

					"If-Modified-Since",
					"If-None-Match",
					"If-Range",
					"If-Unmodified-Since",
					"Max-Forwards",
					"Proxy-Authorization",
					"Referer",
					"Range",
					"Te",
					"Translate",
					"User-Agent",
				};
			}

			internal static class HTTP_RESPONSE_HEADER_ID {
				private static Hashtable m_Hashtable;

				static HTTP_RESPONSE_HEADER_ID() {
					m_Hashtable = new Hashtable((int)Enum.HttpHeaderResponseMaximum);
					for (int i = 0; i < (int)Enum.HttpHeaderResponseMaximum; i++) {
						m_Hashtable.Add(m_Strings[i], i);
					}
				}

				internal static int IndexOfKnownHeader(string HeaderName) {
					object index = m_Hashtable[HeaderName];
					return index==null ? -1 : (int)index;
				 }

				internal static string ToString(int position) {
					return m_Strings[position];
				}
			}

			internal enum Enum {
				HttpHeaderCacheControl          = 0,    // general-header [section 4.5]
				HttpHeaderConnection            = 1,    // general-header [section 4.5]
				HttpHeaderDate                  = 2,    // general-header [section 4.5]
				HttpHeaderKeepAlive             = 3,    // general-header [not in rfc]
				HttpHeaderPragma                = 4,    // general-header [section 4.5]
				HttpHeaderTrailer               = 5,    // general-header [section 4.5]
				HttpHeaderTransferEncoding      = 6,    // general-header [section 4.5]
				HttpHeaderUpgrade               = 7,    // general-header [section 4.5]
				HttpHeaderVia                   = 8,    // general-header [section 4.5]
				HttpHeaderWarning               = 9,    // general-header [section 4.5]

				HttpHeaderAllow                 = 10,   // entity-header  [section 7.1]
				HttpHeaderContentLength         = 11,   // entity-header  [section 7.1]
				HttpHeaderContentType           = 12,   // entity-header  [section 7.1]
				HttpHeaderContentEncoding       = 13,   // entity-header  [section 7.1]
				HttpHeaderContentLanguage       = 14,   // entity-header  [section 7.1]
				HttpHeaderContentLocation       = 15,   // entity-header  [section 7.1]
				HttpHeaderContentMd5            = 16,   // entity-header  [section 7.1]
				HttpHeaderContentRange          = 17,   // entity-header  [section 7.1]
				HttpHeaderExpires               = 18,   // entity-header  [section 7.1]
				HttpHeaderLastModified          = 19,   // entity-header  [section 7.1]


				// Response Headers

				HttpHeaderAcceptRanges          = 20,   // response-header [section 6.2]
				HttpHeaderAge                   = 21,   // response-header [section 6.2]
				HttpHeaderEtag                  = 22,   // response-header [section 6.2]
				HttpHeaderLocation              = 23,   // response-header [section 6.2]
				HttpHeaderProxyAuthenticate     = 24,   // response-header [section 6.2]
				HttpHeaderRetryAfter            = 25,   // response-header [section 6.2]
				HttpHeaderServer                = 26,   // response-header [section 6.2]
				HttpHeaderSetCookie             = 27,   // response-header [not in rfc]
				HttpHeaderVary                  = 28,   // response-header [section 6.2]
				HttpHeaderWwwAuthenticate       = 29,   // response-header [section 6.2]

				HttpHeaderResponseMaximum       = 30,


				HttpHeaderMaximum               = 41
			}

			private static string[] m_Strings = {
				"Cache-Control",
				"Connection",
				"Date",
				"Keep-Alive",
				"Pragma",
				"Trailer",
				"Transfer-Encoding",
				"Upgrade",
				"Via",
				"Warning",

				"Allow",
				"Content-Length",
				"Content-Type",
				"Content-Encoding",
				"Content-Language",
				"Content-Location",
				"Content-MD5",
				"Content-Range",
				"Expires",
				"Last-Modified",

				"Accept-Ranges",
				"Age",
				"ETag",
				"Location",
				"Proxy-Authenticate",
				"Retry-After",
				"Server",
				"Set-Cookie",
				"Vary",
				"WWW-Authenticate",
			};
		}
	}
}