Sun, 23 Aug 2020 23:04:17 +0200
ucx update
1 | 1 | /* |
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
3 | * | |
4 | * Copyright 2008 Sun Microsystems, Inc. All rights reserved. | |
5 | * | |
6 | * THE BSD LICENSE | |
7 | * | |
8 | * Redistribution and use in source and binary forms, with or without | |
9 | * modification, are permitted provided that the following conditions are met: | |
10 | * | |
11 | * Redistributions of source code must retain the above copyright notice, this | |
12 | * list of conditions and the following disclaimer. | |
13 | * Redistributions in binary form must reproduce the above copyright notice, | |
14 | * this list of conditions and the following disclaimer in the documentation | |
15 | * and/or other materials provided with the distribution. | |
16 | * | |
17 | * Neither the name of the nor the names of its contributors may be | |
18 | * used to endorse or promote products derived from this software without | |
19 | * specific prior written permission. | |
20 | * | |
21 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
22 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
23 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
24 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER | |
25 | * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | |
26 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
27 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | |
28 | * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | |
29 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | |
30 | * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
31 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
32 | */ | |
33 | ||
34 | #ifndef PUBLIC_NSAPI_H | |
35 | #define PUBLIC_NSAPI_H | |
36 | ||
37 | /* | |
38 | * File: nsapi.h | |
39 | * | |
40 | * Description: | |
41 | * | |
42 | * This file defines an interface for extending the server with | |
43 | * in-process plug-ins. | |
44 | */ | |
45 | ||
46 | #ifdef __cplusplus | |
47 | extern "C" { | |
48 | #endif | |
49 | ||
50 | /* NSAPI version defined by this header file */ | |
51 | #define NSAPI_VERSION 303 | |
52 | ||
53 | /* Define USE_NSAPI_VERSION to use a specific NSAPI version at compile time */ | |
54 | #ifdef USE_NSAPI_VERSION | |
55 | #if USE_NSAPI_VERSION < 300 || USE_NSAPI_VERSION > NSAPI_VERSION | |
56 | #error This header file does not support the requested NSAPI version | |
57 | #else | |
58 | #undef NSAPI_VERSION | |
59 | #define NSAPI_VERSION USE_NSAPI_VERSION | |
60 | #endif | |
61 | #endif | |
62 | ||
63 | /* --- Begin native platform configuration definitions --- */ | |
64 | ||
65 | #if !defined(XP_WIN32) && !defined(XP_UNIX) | |
66 | #if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) | |
67 | #define XP_WIN32 | |
68 | #else | |
69 | #define XP_UNIX | |
70 | #endif | |
71 | #endif | |
72 | ||
73 | #ifdef XP_UNIX | |
74 | #define NSAPI_PUBLIC | |
75 | #define ZERO(ptr, len) memset(ptr, 0, len) | |
76 | #ifdef AIX | |
77 | #define TCPLEN_T size_t | |
78 | #endif | |
79 | #ifdef HPUX | |
80 | #define TCPLEN_T int | |
81 | #endif | |
82 | #ifndef TCPLEN_T | |
83 | #define TCPLEN_T socklen_t | |
84 | #endif | |
85 | #endif /* XP_UNIX */ | |
86 | ||
87 | #ifdef XP_WIN32 | |
88 | #define NSAPI_PUBLIC __declspec(dllexport) | |
89 | struct iovec { | |
90 | char *iov_base; | |
91 | unsigned iov_len; | |
92 | }; | |
93 | #ifndef S_ISDIR | |
94 | #define S_ISDIR(mode) ((mode & S_IFMT) == S_IFDIR) | |
95 | #endif | |
96 | #ifndef S_ISREG | |
97 | #define S_ISREG(mode) ((mode & S_IFMT) == S_IFREG) | |
98 | #endif | |
99 | #ifndef S_ISLNK | |
100 | #define S_ISLNK(x) (0) | |
101 | #endif | |
102 | #define caddr_t PCHAR | |
103 | #define NEED_STRCASECMP | |
104 | #define NEED_STRNCASECMP | |
105 | #define ZERO(ptr, len) ZeroMemory(ptr, len) | |
106 | #define TCPLEN_T int | |
107 | #endif /* XP_WIN32 */ | |
108 | ||
109 | /* --- End native platform configuration definitions --- */ | |
110 | ||
111 | /* --- Begin miscellaneous definitions --- */ | |
112 | ||
113 | /* Used in some places as a length limit on error messages */ | |
114 | #define MAGNUS_ERROR_LEN 1024 | |
115 | ||
116 | /* Carriage return and line feed */ | |
117 | #define CR 13 | |
118 | #define LF 10 | |
119 | #ifdef XP_WIN32 | |
120 | #define ENDLINE "\r\n" | |
121 | #else | |
122 | #define ENDLINE "\n" | |
123 | #endif | |
124 | ||
125 | /* mime.types file identification line */ | |
126 | #define NCC_MT_MAGIC "#--Netscape Communications Corporation MIME Information" | |
127 | #define NCC_MT_MAGIC_LEN 55 | |
128 | ||
129 | /* The character which separates extensions with cinfo_find */ | |
130 | #define CINFO_SEPARATOR '.' | |
131 | ||
132 | /* The maximum length of a line in a mime.types file */ | |
133 | #define CINFO_MAX_LEN 1024 | |
134 | ||
135 | /* The maximum length of an error message */ | |
136 | #define MAX_ERROR_LEN 4096 | |
137 | ||
138 | /* | |
139 | * A warning is a minor mishap, such as a 404 being issued. | |
140 | */ | |
141 | #define LOG_WARN 0 | |
142 | ||
143 | /* | |
144 | * A misconfig is when there is a syntax error or permission violation in | |
145 | * a config file. | |
146 | */ | |
147 | #define LOG_MISCONFIG 1 | |
148 | ||
149 | /* | |
150 | * Security warnings are issued when authentication fails, or a host is | |
151 | * given a 403 return code. | |
152 | */ | |
153 | #define LOG_SECURITY 2 | |
154 | ||
155 | /* | |
156 | * A failure is when a request could not be fulfilled due to an internal | |
157 | * problem, such as a CGI script exiting prematurely, or a filesystem | |
158 | * permissions problem. | |
159 | */ | |
160 | #define LOG_FAILURE 3 | |
161 | ||
162 | /* | |
163 | * A catastrophe is a fatal server error such as running out of | |
164 | * memory or processes, or a system call failing, or even a server crash. | |
165 | * The server child cannot recover from a catastrophe. | |
166 | */ | |
167 | #define LOG_CATASTROPHE 4 | |
168 | ||
169 | /* | |
170 | * Informational message, of no concern. | |
171 | */ | |
172 | #define LOG_INFORM 5 | |
173 | ||
174 | /* | |
175 | * Internal diagnostic message. | |
176 | */ | |
177 | #define LOG_VERBOSE 6 | |
178 | ||
166
c07122f66676
adds debug log level
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
179 | // new |
c07122f66676
adds debug log level
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
180 | #define LOG_DEBUG 7 |
c07122f66676
adds debug log level
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
181 | |
1 | 182 | /* |
183 | * The time format to use in the error log | |
184 | */ | |
185 | #define ERR_TIMEFMT "[%d/%b/%Y:%H:%M:%S]" | |
186 | ||
187 | ||
188 | /* The fd you will get if you are reporting errors to SYSLOG */ | |
189 | #define ERRORS_TO_SYSLOG NULL | |
190 | ||
191 | /* Return codes from file I/O routines */ | |
192 | #define IO_OKAY 1 | |
193 | #define IO_ERROR -1 | |
194 | #define IO_EOF 0 | |
195 | #define NETBUF_EOF -1 | |
196 | #define NETBUF_ERROR -2 | |
197 | #define NETBUF_FULL -3 | |
198 | ||
199 | /* The disk page size on this machine. */ | |
200 | #define FILE_BUFFERSIZE 4096 | |
201 | ||
202 | #ifdef XP_UNIX | |
203 | ||
204 | #define FILE_PATHSEP '/' | |
205 | #define FILE_PARENT "../" | |
206 | ||
207 | #elif defined(XP_WIN32) | |
208 | ||
209 | #define FILE_PATHSEP '/' | |
210 | #define FILE_PARENT "..\\" | |
211 | ||
212 | #endif /* XP_WIN32 */ | |
213 | ||
214 | #define NET_INFINITE_TIMEOUT 0 | |
215 | #define NET_ZERO_TIMEOUT -1 | |
216 | ||
217 | #ifdef USE_REGEX | |
218 | /* WILDPAT uses regular expressions */ | |
219 | #define WILDPAT_VALID(exp) regexp_valid(exp) | |
220 | #define WILDPAT_MATCH(str, exp) regexp_match(str, exp) | |
221 | #define WILDPAT_CMP(str, exp) regexp_cmp(str, exp) | |
222 | #define WILDPAT_CASECMP(str, exp) regexp_casecmp(str, exp) | |
223 | #define WILDPAT_USES_REGEXP 1 | |
224 | #else | |
225 | /* WILDPAT uses shell expressions */ | |
226 | #define WILDPAT_VALID(exp) shexp_valid(exp) | |
227 | #define WILDPAT_MATCH(str, exp) shexp_match(str, exp) | |
228 | #define WILDPAT_CMP(str, exp) shexp_cmp(str, exp) | |
229 | #define WILDPAT_CASECMP(str, exp) shexp_casecmp(str, exp) | |
230 | #define WILDPAT_USES_SHEXP 1 | |
231 | #endif | |
232 | ||
233 | /* Define return codes from WILDPAT_VALID */ | |
234 | #define NON_WILDPAT -1 /* exp is ordinary string */ | |
235 | #define INVALID_WILDPAT -2 /* exp is an invalid pattern */ | |
236 | #define VALID_WILDPAT 1 /* exp is a valid pattern */ | |
237 | ||
238 | /* Define return codes from regexp_valid and shexp_valid */ | |
239 | #define NON_SXP NON_WILDPAT /* exp is an ordinary string */ | |
240 | #define INVALID_SXP INVALID_WILDPAT /* exp is an invalid shell exp */ | |
241 | #define VALID_SXP VALID_WILDPAT /* exp is a valid shell exp */ | |
242 | ||
243 | #define NON_REGEXP NON_SXP | |
244 | #define INVALID_REGEXP INVALID_SXP | |
245 | #define VALID_REGEXP VALID_SXP | |
246 | ||
247 | #define SYSTHREAD_DEFAULT_PRIORITY 16 | |
248 | ||
249 | /* The longest line in the configuration file */ | |
250 | #define CONF_MAXLEN 16384 | |
251 | ||
252 | #define HTTP_DATE_LEN 30 | |
253 | #define HTTP_DATE_FMT "%a, %d %b %Y %T GMT" | |
254 | ||
255 | /* HTTP status codes */ | |
256 | #define PROTOCOL_CONTINUE 100 | |
257 | #define PROTOCOL_SWITCHING 101 | |
258 | #define PROTOCOL_OK 200 | |
259 | #define PROTOCOL_CREATED 201 | |
260 | #define PROTOCOL_ACCEPTED 202 | |
261 | #define PROTOCOL_NONAUTHORITATIVE 203 | |
262 | #define PROTOCOL_NO_RESPONSE 204 | |
263 | #define PROTOCOL_NO_CONTENT 204 | |
264 | #define PROTOCOL_RESET_CONTENT 205 | |
265 | #define PROTOCOL_PARTIAL_CONTENT 206 | |
266 | #define PROTOCOL_MULTI_STATUS 207 | |
267 | #define PROTOCOL_MULTIPLE_CHOICES 300 | |
268 | #define PROTOCOL_MOVED_PERMANENTLY 301 | |
269 | #define PROTOCOL_REDIRECT 302 | |
270 | #define PROTOCOL_SEE_OTHER 303 | |
271 | #define PROTOCOL_NOT_MODIFIED 304 | |
272 | #define PROTOCOL_USE_PROXY 305 | |
273 | #define PROTOCOL_TEMPORARY_REDIRECT 307 | |
274 | #define PROTOCOL_BAD_REQUEST 400 | |
275 | #define PROTOCOL_UNAUTHORIZED 401 | |
276 | #define PROTOCOL_PAYMENT_REQUIRED 402 | |
277 | #define PROTOCOL_FORBIDDEN 403 | |
278 | #define PROTOCOL_NOT_FOUND 404 | |
279 | #define PROTOCOL_METHOD_NOT_ALLOWED 405 | |
280 | #define PROTOCOL_NOT_ACCEPTABLE 406 | |
281 | #define PROTOCOL_PROXY_UNAUTHORIZED 407 | |
282 | #define PROTOCOL_REQUEST_TIMEOUT 408 | |
283 | #define PROTOCOL_CONFLICT 409 | |
284 | #define PROTOCOL_GONE 410 | |
285 | #define PROTOCOL_LENGTH_REQUIRED 411 | |
286 | #define PROTOCOL_PRECONDITION_FAIL 412 | |
287 | #define PROTOCOL_ENTITY_TOO_LARGE 413 | |
288 | #define PROTOCOL_URI_TOO_LARGE 414 | |
289 | #define PROTOCOL_UNSUPPORTED_MEDIA_TYPE 415 | |
290 | #define PROTOCOL_REQUESTED_RANGE_NOT_SATISFIABLE 416 | |
291 | #define PROTOCOL_EXPECTATION_FAILED 417 | |
292 | #define PROTOCOL_LOCKED 423 | |
293 | #define PROTOCOL_FAILED_DEPENDENCY 424 | |
294 | #define PROTOCOL_SERVER_ERROR 500 | |
295 | #define PROTOCOL_NOT_IMPLEMENTED 501 | |
296 | #define PROTOCOL_BAD_GATEWAY 502 | |
297 | #define PROTOCOL_SERVICE_UNAVAILABLE 503 | |
298 | #define PROTOCOL_GATEWAY_TIMEOUT 504 | |
299 | #define PROTOCOL_VERSION_NOT_SUPPORTED 505 | |
300 | #define PROTOCOL_INSUFFICIENT_STORAGE 507 | |
301 | ||
302 | #define PROTOCOL_VERSION_HTTP09 9 | |
303 | #define PROTOCOL_VERSION_HTTP10 100 | |
304 | #define PROTOCOL_VERSION_HTTP11 101 | |
305 | #define CURRENT_PROTOCOL_VERSION PROTOCOL_VERSION_HTTP11 | |
306 | ||
307 | /* Definitions for HTTP over SSL */ | |
308 | #define HTTPS_PORT 443 | |
309 | #define HTTPS_URL "https" | |
310 | ||
311 | /* Definitions for HTTP over TCP */ | |
312 | #define HTTP_PORT 80 | |
313 | #define HTTP_URL "http" | |
314 | ||
315 | ||
316 | #define REQ_MAX_LINE 4096 | |
317 | ||
318 | /* | |
319 | * The REQ_ return codes. These codes are used to determine what the server | |
320 | * should do after a particular module completes its task. | |
321 | * | |
322 | * Func type functions return these as do many internal functions. | |
323 | */ | |
324 | ||
325 | /* The function performed its task, proceed with the request */ | |
326 | #define REQ_PROCEED 0 | |
327 | /* The entire request should be aborted: An error occurred */ | |
328 | #define REQ_ABORTED -1 | |
329 | /* The function performed no task, but proceed anyway */ | |
330 | #define REQ_NOACTION -2 | |
331 | /* Tear down the session and exit */ | |
332 | #define REQ_EXIT -3 | |
333 | /* Restart the entire request-response process */ | |
334 | #define REQ_RESTART -4 | |
335 | /* Too busy to execute this now */ | |
336 | #define REQ_TOOBUSY -5 | |
337 | ||
3
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
338 | |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
339 | /**** NSAPI extensions ****/ |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
340 | |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
341 | /* The function is still in progress (async extension) */ |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
342 | #define REQ_PROCESSING -8 |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
343 | |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
344 | /**** END NSAPI extensions ****/ |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
345 | |
6
ce8fecc9847d
improved request processing
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
346 | |
1 | 347 | /* --- End miscellaneous definitions --- */ |
348 | ||
349 | /* --- Begin native platform includes --- */ | |
350 | ||
351 | #ifdef XP_UNIX | |
352 | #include <unistd.h> | |
353 | #include <sys/file.h> | |
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
23
diff
changeset
|
354 | #include <pthread.h> |
1 | 355 | #ifndef HPUX |
356 | #include <sys/select.h> | |
357 | #endif | |
109
8a0a7754f123
experimental BSD support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
104
diff
changeset
|
358 | #ifndef BSD |
8a0a7754f123
experimental BSD support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
104
diff
changeset
|
359 | #include <alloca.h> /* new */ |
8a0a7754f123
experimental BSD support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
104
diff
changeset
|
360 | #endif |
1 | 361 | #include <sys/socket.h> |
362 | #include <sys/time.h> | |
363 | #include <sys/types.h> | |
364 | #include <sys/uio.h> | |
365 | #include <fcntl.h> | |
366 | #include <dirent.h> | |
367 | #include <pwd.h> | |
368 | #include <netinet/in.h> | |
369 | #endif /* XP_UNIX */ | |
370 | ||
371 | #ifdef XP_WIN32 | |
372 | #include <wtypes.h> | |
373 | #include <winbase.h> | |
374 | #include <direct.h> | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
375 | #include <dirent.h> // TODO: works only with mingw |
1 | 376 | #include <winsock.h> |
377 | #endif /* XP_WIN32 */ | |
378 | ||
379 | #include <sys/stat.h> | |
380 | #include <ctype.h> | |
381 | #include <stdio.h> | |
382 | #include <stdarg.h> | |
383 | #include <stdlib.h> | |
384 | #include <string.h> | |
385 | #include <errno.h> | |
386 | #include <time.h> | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
387 | #include <inttypes.h> |
1 | 388 | |
389 | /* --- End native platform includes --- */ | |
390 | ||
118
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
391 | #ifndef TRUE |
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
392 | #define TRUE 1 |
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
393 | #endif |
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
394 | #ifndef FALSE |
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
395 | #define FALSE 0 |
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
396 | #endif |
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
397 | |
1 | 398 | /* --- Begin type definitions --- */ |
399 | ||
400 | /* NOTE: both SYS_FILE and SYS_NETFD are actually NSPR PRFileDesc * and can */ | |
401 | /* be used with NSPR API calls (after casting them to PRFileDesc *) */ | |
402 | ||
54 | 403 | // NOTE: no they are not NSPR PRFileDesc* |
404 | // they are VFSFile* | |
405 | // TODO: fix NOTE | |
406 | ||
407 | ||
1 | 408 | #ifndef SYS_FILE_T |
54 | 409 | typedef struct VFSFile *SYS_FILE; |
1 | 410 | #define SYS_FILE_T void * |
411 | #endif /* !SYS_FILE_T */ | |
412 | ||
54 | 413 | #define SYS_ERROR_FD ((SYS_FILE)-1) // TODO: fix |
1 | 414 | |
415 | #ifndef SYS_NETFD_T | |
416 | typedef void *SYS_NETFD; | |
417 | #define SYS_NETFD_T void * | |
418 | #endif /* !SYS_NETFD_T */ | |
419 | ||
420 | /* Error value for a SYS_NETFD */ | |
421 | #ifndef SYS_NET_ERRORFD | |
422 | #define SYS_NET_ERRORFD ((SYS_NETFD)-1) | |
423 | #endif /* !SYS_NET_ERRORFD */ | |
424 | ||
425 | /* | |
426 | * These structures were originally defined in nsapi.h, but those definitions | |
427 | * were removed in iPlanet Web Server 4.0. The contents of these structures | |
428 | * are now private to the server implementation and must not be accessed | |
429 | * directly. Instead, use the objset_*, object_*, directive_table_*, and | |
430 | * directive_* accessor functions. | |
431 | */ | |
432 | typedef struct directive directive; | |
433 | typedef struct dtable dtable; | |
434 | typedef struct httpd_object httpd_object; | |
435 | typedef struct httpd_objset httpd_objset; | |
436 | ||
437 | /* | |
438 | * Type: filebuffer, filebuf_t | |
439 | * | |
440 | * Description: | |
441 | * | |
442 | * This structure is used to represent a buffered file. On some | |
443 | * systems the file may be memory-mapped. A filebuffer is created | |
444 | * by filebuf_open(), and destroyed by filebuf_close(). | |
445 | * | |
446 | * Notes: | |
447 | * | |
448 | * Direct access to the members of this structure, not using | |
449 | * macros defined here, is discouraged. | |
450 | * | |
451 | * The filebuf alias that used to be defined for this type was | |
452 | * found to conflict with a C++ class of the same name, so it | |
453 | * has been renamed to filebuf_t. | |
454 | */ | |
455 | typedef struct filebuffer filebuffer; | |
456 | ||
457 | /* Version of filebuffer when memory-mapped files are supported */ | |
458 | struct filebuffer { | |
459 | SYS_FILE fd; | |
460 | #ifdef XP_WIN32 | |
461 | HANDLE fdmap; | |
462 | #endif | |
463 | caddr_t fp; | |
464 | int len; | |
465 | ||
466 | unsigned char *inbuf; | |
467 | int cursize; | |
468 | ||
469 | int pos; | |
470 | const char *errmsg; | |
471 | }; | |
472 | ||
473 | /* Return next character or IO_EOF */ | |
474 | #define filebuf_getc(b) ((b)->pos == (b)->len ? IO_EOF : (int)((b)->fp)[(b)->pos++]) | |
475 | ||
476 | #define filebuf_iseof(b) ((b)->pos == (b)->len) | |
477 | ||
478 | /* C++ streamio defines a filebuf class. */ | |
479 | typedef filebuffer filebuf_t; | |
480 | ||
481 | #ifdef XP_WIN32 | |
482 | /* Use a filebuffer to read data from a pipe */ | |
483 | #define pipebuf_getc(b) \ | |
484 | ((b)->pos != (b)->cursize ? (int)((b)->inbuf[(b)->pos++]) : pipebuf_next(b,1)) | |
485 | #endif /* XP_WIN32 */ | |
486 | ||
487 | /* | |
488 | * Type: netbuf | |
489 | * | |
490 | * Description: | |
491 | * | |
492 | * This structure is used to represent a buffered network socket. | |
493 | * It is created by netbuf_open(), and destroyed by netbuf_close(). | |
494 | * | |
495 | * Notes: | |
496 | * | |
497 | * Direct access to the members of this structure, not using | |
498 | * macros defined here, is discouraged. | |
499 | * | |
500 | * The inbuf field used to be (unsigned char *), but is now | |
501 | * simply (char *). The value returned by the netbuf_getc() | |
502 | * macro is (int). | |
503 | */ | |
504 | typedef struct netbuf netbuf; | |
505 | struct netbuf { | |
506 | SYS_NETFD sd; | |
507 | ||
508 | int pos, cursize, maxsize, rdtimeout; | |
509 | #ifdef XP_WIN32 | |
510 | CHAR address[64]; | |
511 | #endif /* XP_WIN32 */ | |
512 | unsigned char *inbuf; | |
513 | char *errmsg; | |
514 | #ifndef XP_WIN32 | |
515 | char address[64]; | |
516 | #endif /* !XP_WIN32 */ | |
517 | }; | |
518 | ||
519 | /* | |
520 | * netbuf_getc gets a character from the given network buffer and returns | |
521 | * it (as an integer). | |
522 | * | |
523 | * It will return (int) IO_ERROR for an error and (int) IO_EOF for | |
524 | * an error condition or EOF respectively. | |
525 | */ | |
526 | #define netbuf_getc(b) \ | |
527 | ((b)->pos != (b)->cursize ? (int)((b)->inbuf[(b)->pos++]) : netbuf_next(b,1)) | |
528 | ||
529 | /* | |
530 | * buffer_error returns the last error that occurred with buffer. Don't use | |
531 | * this unless you know an error occurred. Independent of network/file type. | |
532 | */ | |
533 | #define buffer_error(b) ((b)->errmsg) | |
534 | ||
535 | /* | |
536 | * Type: sendfiledata | |
537 | * | |
538 | * Description: | |
539 | * | |
540 | * This structure is used to pass arguments to the net_sendfile() | |
541 | * function. offset and len may be set to 0 to transmit a file in its | |
542 | * entirety. | |
543 | */ | |
544 | typedef struct sendfiledata sendfiledata; | |
545 | struct sendfiledata { | |
546 | SYS_FILE fd; /* file to send */ | |
104
a8acbb12f27c
implemented range requests
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
102
diff
changeset
|
547 | off_t offset; /* offset in file to start sending from */ |
1 | 548 | size_t len; /* number of bytes to send from file */ |
549 | const void *header; /* data to send before file */ | |
550 | int hlen; /* number of bytes to send before file */ | |
551 | const void *trailer; /* data to send after file */ | |
552 | int tlen; /* number of bytes to send after file */ | |
553 | }; | |
554 | ||
555 | /* | |
556 | * Type: NSAPIIOVec | |
557 | * | |
558 | * Description: | |
559 | * | |
560 | * This structure is used to pass arguments to the net_writev() | |
561 | * and FilterWritevFunc() functions. | |
562 | */ | |
65
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
563 | typedef struct iovec NSAPIIOVec; |
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
564 | |
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
565 | /* |
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
566 | //ifdef _LP64 |
1 | 567 | typedef struct NSAPIIOVec NSAPIIOVec; |
568 | struct NSAPIIOVec { | |
569 | char *iov_base; | |
570 | int iov_len; | |
571 | }; | |
65
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
572 | //else |
1 | 573 | typedef struct iovec NSAPIIOVec; |
65
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
574 | //endif |
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
575 | */ |
1 | 576 | |
577 | ||
578 | /* | |
579 | * Type: cinfo | |
580 | * | |
581 | * Description: | |
582 | * | |
583 | * This is a structure that captures the information in the name/value | |
584 | * pairs on one line of a mime.types file. A cinfo structure is | |
585 | * stored in the memory-resident database, indexed by each of the | |
586 | * file extensions specified in the "exts" name/value pair. It | |
587 | * defines various attributes of resources with names containing | |
588 | * the specified file extensions. | |
589 | * | |
590 | * Notes: | |
591 | * | |
592 | * Pointers to cinfo structures returned by this API may or may not | |
593 | * need to freed by the caller. See the individual function | |
594 | * descriptions. | |
595 | * | |
596 | * The strings referenced by the fields of cinfo structures returned | |
597 | * by this API should be considered read-only, and do not need to be | |
598 | * freed by the caller, even when the cinfo structure does. | |
599 | */ | |
600 | typedef struct cinfo cinfo; | |
601 | struct cinfo { | |
602 | char *type; | |
603 | char *encoding; | |
604 | char *language; | |
605 | }; | |
606 | ||
607 | ||
159
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
608 | // nsapi ext begin |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
609 | |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
610 | #define EVENT_POLLIN 0x1 |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
611 | #define EVENT_POLLOUT 0x2 |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
612 | |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
613 | typedef struct EventHandler EventHandler; |
185
b4d7ccf4e06d
implements new event handler and aio on linux
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
184
diff
changeset
|
614 | typedef struct Event Event; |
159
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
615 | |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
616 | typedef int(*eventfunc)(EventHandler*, Event*); |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
617 | |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
618 | struct Event { |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
619 | eventfunc fn; |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
620 | eventfunc finish; |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
621 | void *cookie; |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
622 | intptr_t object; |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
623 | int events; |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
624 | int error; |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
625 | }; |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
626 | |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
627 | // nsapi ext end |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
628 | |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
629 | |
1 | 630 | typedef void* CONDVAR; |
631 | typedef void *COUNTING_SEMAPHORE; | |
632 | typedef void* CRITICAL; | |
633 | ||
634 | #ifdef XP_UNIX | |
635 | typedef DIR* SYS_DIR; | |
636 | typedef struct dirent SYS_DIRENT; | |
637 | #endif /* XP_UNIX */ | |
638 | ||
639 | #ifdef XP_WIN32 | |
640 | ||
641 | typedef struct dirent_s dirent_s; | |
642 | struct dirent_s { | |
643 | char *d_name; | |
644 | }; | |
645 | ||
646 | typedef struct dir_s dir_s; | |
647 | struct dir_s { | |
648 | HANDLE dp; | |
649 | WIN32_FIND_DATA fdata; | |
650 | dirent_s de; | |
651 | }; | |
652 | ||
653 | typedef dir_s* SYS_DIR; | |
654 | typedef dirent_s SYS_DIRENT; | |
655 | ||
656 | #endif /* XP_WIN32 */ | |
657 | ||
658 | typedef struct pb_param pb_param; | |
659 | struct pb_param { | |
660 | char *name,*value; | |
661 | }; | |
662 | ||
663 | typedef struct pb_entry pb_entry; | |
664 | struct pb_entry { | |
665 | pb_param *param; | |
666 | struct pb_entry *next; | |
667 | }; | |
668 | ||
669 | typedef struct pblock pblock; | |
670 | struct pblock { | |
671 | int hsize; | |
672 | struct pb_entry **ht; | |
673 | }; | |
674 | ||
675 | #ifndef POOL_HANDLE_T | |
676 | #define POOL_HANDLE_T | |
677 | typedef void *pool_handle_t; | |
678 | #endif | |
679 | ||
680 | #ifndef SEMAPHORE_T | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
681 | // TODO: fix |
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
682 | //typedef void *SEMAPHORE; |
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
683 | //#define SEMAPHORE_T void * |
1 | 684 | #endif /* !SEMAPHORE_T */ |
685 | ||
686 | #define SESSION_HASHSIZE 5 | |
687 | ||
688 | typedef struct PListStruct_s PListStruct_s; | |
689 | typedef struct ACLListHandle ACLListHandle; | |
54 | 690 | typedef struct VFS VFS; |
691 | typedef struct VFSContext VFSContext; | |
1 | 692 | |
693 | #ifndef PR_AF_INET | |
694 | typedef union PRNetAddr PRNetAddr; | |
695 | #endif | |
696 | ||
697 | typedef struct Session Session; | |
698 | typedef struct Request Request; | |
699 | struct Session { | |
700 | pblock *client; /* client-specific information */ | |
701 | ||
702 | SYS_NETFD csd; /* client file descriptor */ | |
703 | netbuf *inbuf; /* input buffer */ | |
704 | int csd_open; | |
705 | ||
706 | struct in_addr iaddr; | |
707 | ||
708 | pool_handle_t *pool; | |
159
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
709 | |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
710 | EventHandler *ev; /* event handler instance (new) */ |
1 | 711 | |
712 | void *clauth; /* v2 ACL client authentication information */ | |
713 | struct Session *next; | |
714 | int fill; | |
715 | struct sockaddr_in local_addr; /* local addr for this session */ | |
716 | ||
717 | PListStruct_s *subject; | |
718 | int ssl; /* 0 = SSL OFF, 1 = SSL ON */ | |
719 | int clientauth; /* 0 = client auth OFF, 1 = client auth ON */ | |
720 | ||
721 | PRNetAddr *pr_client_addr; | |
722 | PRNetAddr *pr_local_addr; | |
723 | }; | |
724 | ||
84
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
725 | |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
726 | typedef struct FuncStruct FuncStruct; |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
727 | |
1 | 728 | /* |
729 | * FuncPtr is a pointer to an NSAPI SAF function | |
730 | */ | |
731 | ||
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
732 | // TODO: fix typedefs |
1 | 733 | #ifdef XP_UNIX |
734 | typedef int Func(pblock *, Session *, Request *); | |
84
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
735 | // new func executor |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
736 | typedef int FuncExec(FuncStruct *, pblock *, Session *, Request *); |
1 | 737 | #else /* XP_WIN32 */ |
738 | typedef int _cdecl Func(pblock *, Session *, Request *); | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
739 | typedef int _cdecl FuncExec(FuncStruct *, pblock *, Session *, Request *); |
1 | 740 | #endif /* XP_WIN32 */ |
741 | ||
84
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
742 | typedef Func *FuncPtr; |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
743 | typedef FuncExec *FuncExecPtr; |
1 | 744 | |
745 | /* | |
746 | * FuncStruct is a structure used in the static declaration of the | |
747 | * functions. This static declaration is parsed into a hash table at | |
748 | * startup. | |
749 | */ | |
750 | ||
751 | struct FuncStruct { | |
84
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
752 | const char *name; |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
753 | FuncPtr func; |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
754 | //struct FuncStruct *next; |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
755 | FuncExecPtr func_exec; |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
756 | void *exec_data; |
1 | 757 | unsigned flags; |
758 | unsigned poolID; | |
759 | unsigned pool_resolved; | |
760 | }; | |
761 | ||
19
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
762 | ////// new |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
763 | |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
764 | typedef struct _http_listener HttpListener; |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
765 | |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
766 | ////// |
1 | 767 | /* |
768 | * VSInitFunc, VSDestroyFunc, VSDirectiveInitFunc and VSDirectiveDestroyFunc | |
769 | */ | |
770 | typedef struct VirtualServer VirtualServer; | |
771 | typedef int VSInitFunc(VirtualServer *incoming, const VirtualServer *current); | |
772 | typedef void VSDestroyFunc(VirtualServer *outgoing); | |
773 | typedef VSInitFunc *VSInitFuncPtr; | |
774 | typedef VSDestroyFunc *VSDestroyFuncPtr; | |
775 | typedef int VSDirectiveInitFunc(const directive *dir, VirtualServer *incoming, const VirtualServer *current); | |
776 | typedef void VSDirectiveDestroyFunc(const directive *dir, VirtualServer *outgoing); | |
777 | typedef VSDirectiveInitFunc *VSDirectiveInitFuncPtr; | |
778 | typedef VSDirectiveDestroyFunc *VSDirectiveDestroyFuncPtr; | |
779 | ||
780 | /* | |
781 | * Filter is an opaque filter identifier | |
782 | */ | |
783 | typedef struct Filter Filter; | |
784 | ||
785 | /* | |
786 | * FilterContext stores context associated with a particular filter layer | |
787 | */ | |
788 | ||
789 | typedef struct FilterContext FilterContext; | |
790 | ||
791 | struct FilterContext { | |
792 | pool_handle_t *pool; /* pool context was allocated from */ | |
793 | Session *sn; /* session being processed */ | |
794 | Request *rq; /* request being processed */ | |
795 | void *data; /* filter-defined private data */ | |
796 | }; | |
797 | ||
798 | /* | |
799 | * FilterLayer represents one layer of a filter stack | |
800 | */ | |
801 | ||
802 | typedef struct FilterLayer FilterLayer; | |
803 | ||
804 | struct FilterLayer { | |
805 | Filter *filter; /* the filter at this layer in the filter stack */ | |
806 | FilterContext *context; /* context for the filter */ | |
807 | SYS_NETFD lower; /* access to the next filter layer in the stack */ | |
808 | }; | |
809 | ||
810 | /* | |
811 | * Function prototypes for filter methods | |
812 | */ | |
21
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
813 | |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
814 | /* |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
815 | * TODO: modified: added * bevor Filter...Func |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
816 | */ |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
817 | typedef int (*FilterInsertFunc)(FilterLayer *layer, pblock *pb); |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
818 | typedef void (*FilterRemoveFunc)(FilterLayer *layer); |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
819 | typedef int (*FilterFlushFunc)(FilterLayer *layer); |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
820 | typedef int (*FilterReadFunc)(FilterLayer *layer, void *buf, int amount, int timeout); |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
821 | typedef int (*FilterWriteFunc)(FilterLayer *layer, const void *buf, int amount); |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
822 | typedef int (*FilterWritevFunc)(FilterLayer *layer, const NSAPIIOVec *iov, int iov_size); |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
823 | typedef int (*FilterSendfileFunc)(FilterLayer *layer, sendfiledata *sfd); |
1 | 824 | |
825 | /* | |
826 | * FilterMethods is passed to filter_create() to declare the filter methods for | |
827 | * a new filter. Each instance of the FilterMethods structure should be | |
828 | * initialized using the FILTER_METHODS_INITIALIZER macro. | |
829 | */ | |
830 | ||
831 | typedef struct FilterMethods FilterMethods; | |
832 | ||
833 | struct FilterMethods { | |
834 | size_t size; | |
835 | #if NSAPI_VERSION >= 302 | |
836 | FilterInsertFunc *insert; | |
837 | FilterRemoveFunc *remove; | |
838 | FilterFlushFunc *flush; | |
839 | FilterReadFunc *read; | |
840 | FilterWriteFunc *write; | |
841 | FilterWritevFunc *writev; | |
842 | FilterSendfileFunc *sendfile; | |
843 | #else | |
844 | void *reserved1; | |
845 | void *reserved2; | |
846 | void *reserved3; | |
847 | void *reserved4; | |
848 | void *reserved5; | |
849 | void *reserved6; | |
850 | void *reserved7; | |
851 | #endif /* NSAPI_VERSION >= 302 */ | |
852 | }; | |
853 | ||
854 | #define FILTER_METHODS_INITIALIZER \ | |
855 | { \ | |
856 | sizeof(FilterMethods), \ | |
857 | NULL, /* insert */ \ | |
858 | NULL, /* remove */ \ | |
859 | NULL, /* flush */ \ | |
860 | NULL, /* read */ \ | |
861 | NULL, /* write */ \ | |
862 | NULL, /* writev */ \ | |
863 | NULL /* sendfile */ \ | |
864 | } | |
865 | ||
866 | /* | |
867 | * Filter order definitions for filter_create() | |
868 | */ | |
869 | #define FILTER_CONTENT_GENERATION 0xf0000 | |
870 | #define FILTER_CONTENT_TRANSLATION_HIGH 0xa0000 | |
871 | #define FILTER_CONTENT_TRANSLATION 0x90000 | |
872 | #define FILTER_CONTENT_TRANSLATION_LOW 0x80000 | |
873 | #define FILTER_CONTENT_CODING 0x50000 | |
874 | #define FILTER_TRANSFER_CODING 0x40000 | |
875 | #define FILTER_MESSAGE_CODING 0x30000 | |
876 | #define FILTER_TRANSPORT_CODING 0x20000 | |
877 | #define FILTER_NETWORK 0x10000 | |
878 | ||
879 | typedef struct shmem_s shmem_s; | |
880 | struct shmem_s { | |
881 | void *data; /* the data */ | |
882 | #ifdef XP_WIN32 | |
883 | HANDLE fdmap; | |
884 | #endif /* XP_WIN32 */ | |
885 | int size; /* the maximum length of the data */ | |
886 | ||
887 | char *name; /* internal use: filename to unlink if exposed */ | |
888 | SYS_FILE fd; /* internal use: file descriptor for region */ | |
889 | }; | |
890 | ||
891 | /* Define a handle for a thread */ | |
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
23
diff
changeset
|
892 | //typedef void* SYS_THREAD; |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
893 | |
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
894 | #ifdef XP_UNIX |
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
23
diff
changeset
|
895 | typedef pthread_t SYS_THREAD; |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
896 | #else |
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
897 | typedef void* SYS_THREAD; |
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
898 | #endif |
1 | 899 | |
900 | /* Define an error value for the thread handle */ | |
901 | #define SYS_THREAD_ERROR NULL | |
902 | ||
903 | ||
904 | typedef struct conf_global_vars_s conf_global_vars_s; | |
905 | struct conf_global_vars_s { | |
906 | ||
907 | /* What port we listen to */ | |
908 | int Vport; /* OBSOLETE */ | |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
909 | #define server_portnum 80 |
1 | 910 | |
911 | /* What address to bind to */ | |
912 | char *Vaddr; /* OBSOLETE */ | |
913 | ||
914 | /* User to run as */ | |
915 | struct passwd *Vuserpw; | |
916 | ||
917 | /* Directory to chroot to */ | |
918 | char *Vchr; | |
919 | ||
920 | /* Where to log our pid to */ | |
921 | char *Vpidfn; | |
922 | ||
923 | #define pool_max conf_getglobals()->Vpool_max | |
924 | int Vpool_max; | |
925 | #define pool_min conf_getglobals()->Vpool_min | |
926 | int Vpool_min; /* OBSOLETE */ | |
927 | #define pool_life conf_getglobals()->Vpool_life | |
928 | int Vpool_life; /* OBSOLETE */ | |
929 | ||
930 | /* For multiprocess UNIX servers, the maximum threads per process */ | |
931 | #define pool_maxthreads conf_getglobals()->Vpool_maxthreads | |
932 | int Vpool_maxthreads; | |
933 | ||
934 | #define pool_minthreads conf_getglobals()->Vpool_minthreads | |
935 | int Vpool_minthreads; /* OBSOLETE */ | |
936 | ||
937 | char *Vsecure_keyfn; /* OBSOLETE */ | |
938 | char *Vsecure_certfn; /* OBSOLETE */ | |
939 | ||
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
940 | #define security_active 0 |
1 | 941 | int Vsecurity_active; |
942 | int Vssl3_active; /* OBSOLETE */ | |
943 | int Vssl2_active; /* OBSOLETE */ | |
944 | int Vsecure_auth; /* OBSOLETE */ | |
945 | int Vsecurity_session_timeout; | |
946 | long Vssl3_session_timeout; | |
947 | ||
948 | /* The server's hostname as should be reported in self-ref URLs */ | |
47
ce9790523346
server can change uid
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
949 | #define server_hostname "x4" // TODO: fix |
1 | 950 | char *Vserver_hostname; |
951 | ||
952 | /* The main object from which all are derived */ | |
953 | #define root_object conf_getglobals()->Vroot_object | |
954 | char *Vroot_object; | |
955 | ||
956 | /* The object set the administrator has asked us to load */ | |
957 | #define std_os conf_getglobals()->Vstd_os | |
958 | httpd_objset *Vstd_os; | |
959 | ||
960 | /* The root of ACL data structures */ | |
961 | void *Vacl_root; | |
962 | ||
963 | /* The main error log, where all errors are logged */ | |
964 | char *Vmaster_error_log; | |
965 | ||
966 | /* The server root directory (contains instance subdirectories) */ | |
967 | #define server_root conf_getglobals()->Vserver_root | |
968 | char *Vserver_root; | |
969 | ||
970 | /* This server's id */ | |
971 | #define server_id conf_getglobals()->Vserver_id | |
972 | char *Vserver_id; | |
973 | ||
974 | /* Admin server users file */ | |
975 | char *Vadmin_users; | |
976 | ||
977 | /* The installation directory (contains bin and lib subdirectories) */ | |
978 | char *Vnetsite_root; | |
979 | ||
980 | /* Digest authentication stale nonce timeout value */ | |
981 | int digest_stale_timeout; | |
982 | ||
983 | int single_accept; /* OBSOLETE */ | |
984 | int num_keep_alives; /* OBSOLETE */ | |
985 | int log_verbose; /* OBSOLETE */ | |
986 | int mmap_flags; /* OBSOLETE */ | |
987 | int mmap_prots; /* OBSOLETE */ | |
988 | int unused1; | |
989 | int unused2; | |
990 | ||
991 | /* Begin Enterprise 3.0 fields */ | |
992 | int accept_language; /* turn accept-language on/off */ | |
993 | ||
994 | char *mtahost; | |
995 | char *nntphost; /* OBSOLETE */ | |
996 | ||
997 | /* The root of ACL data structures */ | |
998 | void *Vacl_root_30; | |
999 | ||
1000 | char *agentFilePath; /* OBSOLETE */ | |
1001 | ||
1002 | int Allowed; /* OBSOLETE */ | |
1003 | ||
1004 | pblock *genericGlobals; /* OBSOLETE */ | |
1005 | ||
1006 | char *agentsACLFile; /* OBSOLETE */ | |
1007 | ||
1008 | int wait_for_cgi; /* OBSOLETE */ | |
1009 | int cgiwatch_timeout; /* OBSOLETE */ | |
1010 | int started_by_watchdog; | |
1011 | int restarted_by_watchdog; | |
1012 | int old_accel_cache_enabled; /* OBSOLETE */ | |
1013 | int Vssl_cache_entries; | |
1014 | int blocking_listen_socket; /* OBSOLETE */ | |
1015 | pblock **initfns; | |
1016 | char *vs_config_file; /* OBSOLETE */ | |
1017 | }; | |
1018 | ||
1019 | /* Type used for Request rq_attr bit flags */ | |
1020 | #ifdef AIX | |
1021 | #define RQATTR unsigned | |
1022 | #else | |
1023 | #define RQATTR unsigned long | |
1024 | #endif | |
1025 | ||
1026 | struct Request { | |
1027 | /* Server working variables */ | |
1028 | pblock *vars; | |
1029 | ||
1030 | /* The method, URI, and protocol revision of this request */ | |
1031 | pblock *reqpb; | |
1032 | /* Protocol specific headers */ | |
1033 | int loadhdrs; | |
1034 | pblock *headers; | |
1035 | ||
1036 | /* Server's response headers */ | |
1037 | int senthdrs; | |
1038 | pblock *srvhdrs; | |
1039 | ||
1040 | /* The object set constructed to fulfill this request */ | |
1041 | httpd_objset *os; | |
1042 | /* Array of objects that were created from .nsconfig files */ | |
1043 | httpd_objset *tmpos; | |
1044 | ||
1045 | /* The stat last returned by request_stat_path */ | |
1046 | char *statpath; | |
1047 | char *staterr; | |
1048 | struct stat *finfo; | |
1049 | ||
1050 | /* access control state */ | |
1051 | int aclstate; /* ACL decision state */ | |
1052 | int acldirno; /* deciding ACL directive number */ | |
1053 | char *aclname; /* name of deciding ACL */ | |
1054 | pblock *aclpb; /* OBSOLETE */ | |
1055 | /* 3.0 ACL list pointer */ | |
1056 | ACLListHandle *acllist; | |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
1057 | uint32_t aclreqaccess; /* new - required access rights */ |
54 | 1058 | |
1059 | VFS *vfs; /* new - virtual file system */ | |
59
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1060 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1061 | void *davCollection; |
1 | 1062 | |
1063 | int request_is_cacheable; /* */ | |
1064 | int directive_is_cacheable; /* set by SAFs with no external side effects that make decisions based solely on URI and path */ | |
1065 | ||
1066 | char *cached_headers; /* OBSOLETE */ | |
1067 | int cached_headers_len; /* OBSOLETE */ | |
1068 | char *unused; | |
1069 | ||
1070 | /* HTTP/1.1 features */ | |
1071 | #define REQ_TIME(x) (x)->req_start | |
1072 | time_t req_start; /* time request arrived - used for selecting weak or strong cache validation */ | |
1073 | short protv_num; /* protocol version number */ | |
1074 | short method_num; /* method number */ | |
1075 | struct rq_attr { | |
1076 | RQATTR abs_uri:1; /* set if absolute URI was used */ | |
1077 | RQATTR chunked:1; /* chunked transfer-coding */ | |
1078 | RQATTR keep_alive:1; /* connection keep-alive */ | |
1079 | RQATTR pipelined:1; /* request packet is pipelined */ | |
1080 | RQATTR internal_req:1; /* this was an internal request */ | |
1081 | RQATTR perm_req:1; /* don't FREE() this request */ | |
1082 | RQATTR header_file_present:1; /* OBSOLETE */ | |
1083 | RQATTR footer_file_present:1; /* OBSOLETE */ | |
1084 | RQATTR jvm_attached:1; /* OBSOLETE */ | |
1085 | RQATTR req_restarted:1; /* request was restarted */ | |
1086 | RQATTR jvm_request_locked:1; /* used for first-request serialization on some platforms */ | |
1087 | RQATTR default_type_set:1; /* set if default types were set using set-default-type objecttype function */ | |
1088 | RQATTR is_web_app:1; /* OBSOLETE */ | |
1089 | RQATTR ssl_unclean_shutdown:1; /* set if browser requires unclean SSL shutdown */ | |
1090 | RQATTR vary_accept_language:1; /* set if request was restarted based on an accept-language header */ | |
1091 | RQATTR reserved:17; /* if you add a flag, make sure to subtract from this */ | |
1092 | } rq_attr; | |
1093 | char *hostname; /* hostname used to access server (always non-NULL) */ | |
1094 | int allowed; /* OBSOLETE */ | |
1095 | int byterange; /* OBSOLETE */ | |
1096 | short status_num; /* HTTP status code */ | |
1097 | ||
1098 | int staterrno; /* used for rqstat */ | |
1099 | Request *orig_rq; /* original Request - used for internal redirects */ | |
1100 | }; | |
1101 | ||
1102 | /* Request attribute macros */ | |
1103 | #define ABS_URI(x) (x)->rq_attr.abs_uri | |
1104 | #define CHUNKED(x) (x)->rq_attr.chunked | |
1105 | #define KEEP_ALIVE(x) (x)->rq_attr.keep_alive | |
1106 | #define PIPELINED(x) (x)->rq_attr.pipelined | |
1107 | #define INTERNAL_REQUEST(x) (x)->rq_attr.internal_req | |
1108 | #define RESTARTED_REQUEST(x) (x)->rq_attr.req_restarted | |
1109 | #define PERM_REQUEST(x) (x)->rq_attr.perm_req | |
1110 | #define JVM_REQUEST_LOCKED(x) (x)->rq_attr.jvm_request_locked | |
1111 | #define SSL_UNCLEAN_SHUTDOWN(x) (x)->rq_attr.ssl_unclean_shutdown | |
1112 | #define VARY_ACCEPT_LANGUAGE(x) (x)->rq_attr.vary_accept_language | |
1113 | ||
1114 | /* Define methods for HTTP/1.1 */ | |
1115 | #define METHOD_HEAD 0 | |
1116 | #define METHOD_GET 1 | |
1117 | #define METHOD_PUT 2 | |
1118 | #define METHOD_POST 3 | |
1119 | #define METHOD_DELETE 4 | |
1120 | #define METHOD_TRACE 5 | |
1121 | #define METHOD_OPTIONS 6 | |
1122 | /* The following methods are Netscape method extensions */ | |
1123 | #define METHOD_MOVE 7 | |
1124 | #define METHOD_INDEX 8 | |
1125 | #define METHOD_MKDIR 9 | |
1126 | #define METHOD_RMDIR 10 | |
1127 | #define METHOD_COPY 11 | |
1128 | #define METHOD_MAX 12 /* Number of methods available on this server */ | |
1129 | ||
1130 | #define ISMGET(r) ((r)->method_num == METHOD_GET) | |
1131 | #define ISMHEAD(r) ((r)->method_num == METHOD_HEAD) | |
1132 | #define ISMPUT(r) ((r)->method_num == METHOD_PUT) | |
1133 | #define ISMPOST(r) ((r)->method_num == METHOD_POST) | |
1134 | #define ISMDELETE(r) ((r)->method_num == METHOD_DELETE) | |
1135 | #define ISMMOVE(r) ((r)->method_num == METHOD_MOVE) | |
1136 | #define ISMINDEX(r) ((r)->method_num == METHOD_INDEX) | |
1137 | #define ISMMKDIR(r) ((r)->method_num == METHOD_MKDIR) | |
1138 | #define ISMRMDIR(r) ((r)->method_num == METHOD_RMDIR) | |
1139 | #define ISMCOPY(r) ((r)->method_num == METHOD_COPY) | |
1140 | #define ISMTRACE(r) ((r)->method_num == METHOD_TRACE) | |
1141 | #define ISMOPTIONS(r) ((r)->method_num == METHOD_OPTIONS) | |
1142 | ||
1143 | ||
172
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1144 | // new types |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1145 | typedef struct aiocb_s { |
184
a2a15ad6e4b9
fixes async sendfile
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
172
diff
changeset
|
1146 | SYS_FILE filedes; |
172
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1147 | void *buf; |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1148 | size_t nbytes; |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1149 | off_t offset; |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1150 | ssize_t result; |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1151 | int result_errno; |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1152 | Event *event; |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1153 | EventHandler *evhandler; |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1154 | } aiocb_s; |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1155 | |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1156 | |
59
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1157 | typedef struct _thread_pool threadpool_t; |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1158 | typedef struct _threadpool_job threadpool_job; |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1159 | typedef void*(*job_callback_f)(void *data); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1160 | |
127
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1161 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1162 | typedef struct WebSocket WebSocket; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1163 | typedef struct WSMessage WSMessage; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1164 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1165 | struct WebSocket { |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1166 | int (*on_open)(WebSocket *); |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1167 | int (*on_error)(WebSocket *); |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1168 | int (*on_message)(WebSocket *, WSMessage *msg); |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1169 | int (*on_close)(WebSocket *); |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1170 | void *userdata; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1171 | }; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1172 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1173 | struct WSMessage { |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1174 | /* |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1175 | * message data (text or binary) |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1176 | */ |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1177 | char *data; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1178 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1179 | /* |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1180 | * data length |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1181 | */ |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1182 | size_t length; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1183 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1184 | /* |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1185 | * message type (opcode) |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1186 | * 0x0: continuation |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1187 | * 0x1: text |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1188 | * 0x2: binary |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1189 | * 0x3-7: reserved non-control frame |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1190 | * 0x8: close |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1191 | * 0x9: ping |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1192 | * 0xa: pong |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1193 | * 0xb-f: reserved control frame |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1194 | */ |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1195 | int type; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1196 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1197 | /* |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1198 | * if the message is incomplete, next points to the continuation message |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1199 | */ |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1200 | WSMessage *next; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1201 | }; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1202 | |
1 | 1203 | /* --- End type definitions --- */ |
1204 | ||
1205 | /* --- Begin dispatch vector table definition --- */ | |
1206 | /* --- End dispatch vector table definition --- */ | |
1207 | ||
1208 | /* --- Begin API macro definitions --- */ | |
1209 | ||
1210 | #ifndef INTNSAPI | |
1211 | ||
1212 | #if NSAPI_VERSION >= 301 | |
1213 | ||
1214 | /* | |
1215 | * In Sun ONE Web Server 6.1 and higher, http_parse_request("", NULL, NULL) | |
1216 | * returns the NSAPI version. In previous releases, it returns -1. | |
1217 | */ | |
68
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1218 | //define __NSAPI_RUNTIME_VERSION \ |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1219 | // ((*__nsapi30_table->f_http_parse_request)("", NULL, NULL)) |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1220 | |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1221 | // new: |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1222 | #define __NSAPI_RUNTIME_VERSION nsapi_runtime_version() |
1 | 1223 | |
1224 | /* | |
1225 | * NSAPI_RUNTIME_VERSION returns the NSAPI version the server implements. The | |
1226 | * returned NSAPI version number is reliable only in iPlanet Web Server 6.0, | |
1227 | * Netscape Enterprise Server 6.0, and Sun ONE Web Server 6.0 and higher. | |
1228 | */ | |
68
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1229 | //define NSAPI_RUNTIME_VERSION \ |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1230 | // (__NSAPI_RUNTIME_VERSION > 0 ? __NSAPI_RUNTIME_VERSION : 301) |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1231 | |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1232 | // new: |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1233 | #define NSAPI_RUNTIME_VERSION nsapi_runtime_version() |
1 | 1234 | |
1235 | #endif /* NSAPI_VERSION >= 301 */ | |
1236 | ||
68
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1237 | //define system_version (*__nsapi30_table->f_system_version) |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1238 | // new: |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1239 | NSAPI_PUBLIC char* system_version(); |
1 | 1240 | |
1241 | /* | |
1242 | * Depending on the system, memory allocated via these macros may come from | |
1243 | * an arena. If these functions are called from within an Init function, they | |
1244 | * will be allocated from permanent storage. Otherwise, they will be freed | |
1245 | * when the current request is finished. | |
1246 | */ | |
1247 | ||
1248 | ||
1249 | ||
1250 | #endif /* !INTNSAPI */ | |
1251 | ||
1252 | #ifdef XP_UNIX | |
1253 | #define dir_open opendir | |
1254 | #define dir_read readdir | |
1255 | #define dir_close closedir | |
1256 | #define dir_create(path) mkdir(path, 0755) | |
1257 | #define dir_remove rmdir | |
1258 | #define system_chdir chdir | |
1259 | #define file_unix2local(path,p2) strcpy(p2,path) | |
1260 | #endif /* XP_UNIX */ | |
1261 | ||
1262 | #ifdef XP_WIN32 | |
1263 | #define dir_create _mkdir | |
1264 | #define dir_remove _rmdir | |
1265 | #define system_chdir SetCurrentDirectory | |
1266 | #endif /* XP_WIN32 */ | |
1267 | ||
1268 | /* | |
1269 | * Thread-safe variants of localtime and gmtime | |
1270 | */ | |
1271 | #define system_localtime(curtime, ret) util_localtime(curtime, ret) | |
1272 | #define system_gmtime(curtime, ret) util_gmtime(curtime, ret) | |
1273 | ||
1274 | /* | |
1275 | * pblock_find finds the entry with the given name in pblock pb. | |
1276 | * | |
1277 | * If it is successful, it returns the param block. If not, it returns NULL. | |
1278 | */ | |
1279 | #define pblock_find(name, pb) (pblock_fr(name,pb,0)) | |
1280 | ||
1281 | /* | |
1282 | * pblock_remove behaves exactly like pblock_find, but removes the given | |
1283 | * entry from pb. | |
1284 | */ | |
1285 | #define pblock_remove(name, pb) (pblock_fr(name,pb,1)) | |
1286 | ||
1287 | /* | |
1288 | * session_dns returns the DNS hostname of the client of this session, | |
1289 | * and inserts it into the client pblock. Returns NULL if unavailable. | |
1290 | */ | |
1291 | #define session_dns(sn) session_dns_lookup(sn, 0) | |
1292 | ||
1293 | /* | |
1294 | * session_maxdns looks up a hostname from an IP address, and then verifies | |
1295 | * that the host is really who they claim to be. | |
1296 | */ | |
1297 | #define session_maxdns(sn) session_dns_lookup(sn, 1) | |
1298 | ||
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1299 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1300 | /* nsapi functions */ |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1301 | |
47
ce9790523346
server can change uid
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
1302 | NSAPI_PUBLIC conf_global_vars_s* conf_getglobals(); |
ce9790523346
server can change uid
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
1303 | |
61
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1304 | /* |
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1305 | * Query the VirtualServer* associated with a given Request*. |
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1306 | */ |
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1307 | const VirtualServer* request_get_vs(Request *rq); |
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1308 | #define request_get_vs request_get_vs |
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1309 | |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1310 | struct stat* request_stat_path(const char *path, Request *rq); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1311 | #define request_stat_path request_stat_path |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1312 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1313 | void request_free(Request *rq); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1314 | #define request_free request_free |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1315 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1316 | Request* request_restart_internal(const char *uri, Request *rq); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1317 | #define request_restart_internal request_restart_internal |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1318 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1319 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1320 | char* vs_translate_uri(const VirtualServer *vs, const char *uri); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1321 | #define vs_translate_uri vs_translate_uri |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1322 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1323 | char* servact_translate_uri(char *uri, Session *sn); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1324 | #define servact_translate_uri servact_translate_uri |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1325 | #define request_translate_uri servact_translate_uri |
61
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1326 | |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1327 | ssize_t net_write(SYS_NETFD fd, void *buf, size_t nbytes); |
64
c7f5b062e622
added net_writev
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
63
diff
changeset
|
1328 | ssize_t net_writev(SYS_NETFD fd, struct iovec *iovec, int iovcnt); |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1329 | ssize_t net_sendfile(SYS_NETFD fd, sendfiledata *sfd); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1330 | ssize_t net_read(SYS_NETFD fd, void *buf, size_t nbytes); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1331 | int net_flush(SYS_NETFD sd); |
110
43a746e905f6
refactored IO system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
109
diff
changeset
|
1332 | void net_close(SYS_NETFD fd); |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1333 | |
64
c7f5b062e622
added net_writev
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
63
diff
changeset
|
1334 | // NSAPI extension |
23
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
1335 | ssize_t net_printf(SYS_NETFD fd, char *format, ...); |
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
1336 | |
172
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1337 | int net_setnonblock(SYS_NETFD fd, int nonblock); |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1338 | int net_errno(SYS_NETFD fd); |
23
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
1339 | |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1340 | NSAPI_PUBLIC pb_param *INTparam_create(const char *name, const char *value); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1341 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1342 | NSAPI_PUBLIC int INTparam_free(pb_param *pp); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1343 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1344 | NSAPI_PUBLIC pblock *INTpblock_create(int n); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1345 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1346 | NSAPI_PUBLIC void INTpblock_free(pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1347 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1348 | NSAPI_PUBLIC char *INTpblock_findval(const char *name, const pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1349 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1350 | NSAPI_PUBLIC pb_param *INTpblock_nvinsert(const char *name, const char *value, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1351 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1352 | NSAPI_PUBLIC pb_param *pblock_nvlinsert(const char *name, int namelen, const char *value, int valuelen, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1353 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1354 | NSAPI_PUBLIC pb_param *INTpblock_nninsert(const char *name, int value, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1355 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1356 | NSAPI_PUBLIC void INTpblock_pinsert(pb_param *pp, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1357 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1358 | NSAPI_PUBLIC int INTpblock_str2pblock(const char *str, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1359 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1360 | NSAPI_PUBLIC char *INTpblock_pblock2str(const pblock *pb, char *str); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1361 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1362 | NSAPI_PUBLIC int INTpblock_copy(const pblock *src, pblock *dst); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1363 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1364 | NSAPI_PUBLIC pblock *INTpblock_dup(const pblock *src); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1365 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1366 | NSAPI_PUBLIC char **INTpblock_pb2env(const pblock *pb, char **env); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1367 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1368 | NSAPI_PUBLIC void pblock_nvreplace (const char *name, const char *value, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1369 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1370 | NSAPI_PUBLIC pb_param *pblock_param_create(pblock *pb, const char *name, const char *value); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1371 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1372 | NSAPI_PUBLIC pblock *pblock_create_pool(pool_handle_t *pool_handle, int n); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1373 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1374 | NSAPI_PUBLIC pb_param *INTpblock_fr(const char *name, pblock *pb, int remove); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1375 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1376 | NSAPI_PUBLIC char *INTpblock_replace(const char *name,char * new_value,pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1377 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1378 | NSAPI_PUBLIC int INTpblock_str2pblock_lowercasename(const char *str, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1379 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1380 | //NSAPI_PUBLIC pb_param *pblock_removeone(pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1381 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1382 | //NSAPI_PUBLIC const pb_key *pblock_key(const char *name); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1383 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1384 | //NSAPI_PUBLIC pb_param *pblock_key_param_create(pblock *pb, const pb_key *key, const char *value, int valuelen); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1385 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1386 | //NSAPI_PUBLIC char *pblock_findkeyval(const pb_key *key, const pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1387 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1388 | //NSAPI_PUBLIC pb_param *pblock_findkey(const pb_key *key, const pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1389 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1390 | //NSAPI_PUBLIC pb_param *pblock_removekey(const pb_key *key, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1391 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1392 | //NSAPI_PUBLIC pb_param *pblock_kvinsert(const pb_key *key, const char *value, int valuelen, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1393 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1394 | //NSAPI_PUBLIC void pblock_kpinsert(const pb_key *key, pb_param *pp, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1395 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1396 | //NSAPI_PUBLIC void pblock_kvreplace(const pb_key *key, const char *value, int valuelen, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1397 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1398 | //NSAPI_PUBLIC pb_param *pblock_kninsert(const pb_key *key, int value, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1399 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1400 | //NSAPI_PUBLIC pb_param *pblock_kllinsert(const pb_key *key, PRInt64 value, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1401 | |
65
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
1402 | #define pblock_remove(name, pb) (pblock_fr(name,pb,1)) |
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
1403 | |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1404 | #define param_create INTparam_create |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1405 | #define param_free INTparam_free |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1406 | #define pblock_create INTpblock_create |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1407 | #define pblock_free INTpblock_free |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1408 | #define pblock_findval INTpblock_findval |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1409 | #define pblock_nvinsert INTpblock_nvinsert |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1410 | #define pblock_nninsert INTpblock_nninsert |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1411 | #define pblock_pinsert INTpblock_pinsert |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1412 | #define pblock_str2pblock INTpblock_str2pblock |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1413 | #define pblock_pblock2str INTpblock_pblock2str |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1414 | #define pblock_copy INTpblock_copy |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1415 | #define pblock_dup INTpblock_dup |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1416 | #define pblock_pb2env INTpblock_pb2env |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1417 | #define pblock_fr INTpblock_fr |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1418 | #define pblock_replace INTpblock_replace |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1419 | |
59
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1420 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1421 | // pool |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1422 | NSAPI_PUBLIC pool_handle_t *INTpool_create(void); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1423 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1424 | NSAPI_PUBLIC void *INTpool_mark(pool_handle_t *pool_handle); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1425 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1426 | NSAPI_PUBLIC void INTpool_recycle(pool_handle_t *pool_handle, void *mark); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1427 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1428 | NSAPI_PUBLIC void INTpool_destroy(pool_handle_t *pool_handle); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1429 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1430 | NSAPI_PUBLIC int INTpool_enabled(void); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1431 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1432 | NSAPI_PUBLIC void *INTpool_malloc(pool_handle_t *pool_handle, size_t size ); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1433 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1434 | NSAPI_PUBLIC void INTpool_free(pool_handle_t *pool_handle, void *ptr ); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1435 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1436 | NSAPI_PUBLIC |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1437 | void *INTpool_calloc(pool_handle_t *pool_handle, size_t nelem, size_t elsize); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1438 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1439 | NSAPI_PUBLIC |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1440 | void *INTpool_realloc(pool_handle_t *pool_handle, void *ptr, size_t size ); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1441 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1442 | NSAPI_PUBLIC |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1443 | char *INTpool_strdup(pool_handle_t *pool_handle, const char *orig_str ); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1444 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1445 | #define pool_create INTpool_create |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1446 | #define pool_mark INTpool_mark |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1447 | #define pool_recycle INTpool_recycle |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1448 | #define pool_destroy INTpool_destroy |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1449 | #define pool_enabled INTpool_enabled |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1450 | #define pool_malloc INTpool_malloc |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1451 | #define pool_free INTpool_free |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1452 | #define pool_calloc INTpool_calloc |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1453 | #define pool_realloc INTpool_realloc |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1454 | #define pool_strdup INTpool_strdup |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1455 | |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1456 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1457 | #define MALLOC malloc |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1458 | #define CALLOC(size) calloc(1, size) |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1459 | #define REALLOC realloc |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1460 | #define FREE free |
118
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
1461 | #define STRDUP strdup |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1462 | |
23
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
1463 | // func util functions |
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
1464 | FuncStruct* func_resolve(pblock *pb, Session *sn, Request *rq); |
84
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
1465 | int func_exec(pblock *pb, Session *sn, Request *rq); |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
1466 | struct FuncStruct func_insert(char *name, FuncPtr fn); |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
1467 | #define func_insert func_insert |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1468 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1469 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1470 | void protocol_status(Session *sn, Request *rq, int n, const char *m); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1471 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1472 | int http_start_response(Session *sn, Request *rq); |
1 | 1473 | #define protocol_start_response http_start_response |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1474 | int request_header(char *name, char **value, Session *sn, Request *rq); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1475 | |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1476 | char *http_uri2url(const char *prefix, const char *suffix); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1477 | char *http_uri2url_dynamic(const char *prefix, const char *suffix, |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1478 | Session *sn, Request *rq); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1479 | #define protocol_uri2url http_uri2url |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1480 | #define protocol_uri2url_dynamic http_uri2url_dynamic |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1481 | |
102
136a76e293b5
added etag and conditional request implementation from Open Web Server
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
87
diff
changeset
|
1482 | |
136a76e293b5
added etag and conditional request implementation from Open Web Server
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
87
diff
changeset
|
1483 | NSAPI_PUBLIC void http_format_etag(Session *sn, Request *rq, char *etagp, int etaglen, off_t size, time_t mtime); |
136a76e293b5
added etag and conditional request implementation from Open Web Server
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
87
diff
changeset
|
1484 | NSAPI_PUBLIC int http_check_preconditions(Session *sn, Request *rq, struct tm *mtm, const char *etag); |
136a76e293b5
added etag and conditional request implementation from Open Web Server
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
87
diff
changeset
|
1485 | NSAPI_PUBLIC int http_set_finfo(Session *sn, Request *rq, struct stat *finfo); |
136a76e293b5
added etag and conditional request implementation from Open Web Server
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
87
diff
changeset
|
1486 | |
118
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
1487 | NSAPI_PUBLIC char **http_hdrs2env(pblock *pb); |
102
136a76e293b5
added etag and conditional request implementation from Open Web Server
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
87
diff
changeset
|
1488 | |
127
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1489 | // new websocket API begin |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1490 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1491 | NSAPI_PUBLIC int http_handle_websocket(Session *sn, Request *rq, WebSocket *websocket); |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1492 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1493 | NSAPI_PUBLIC int websocket_send_text(SYS_NETFD csd, char *msg, size_t len); |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1494 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1495 | // websocket API end |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1496 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1497 | |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1498 | typedef void (*thrstartfunc)(void *); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1499 | SYS_THREAD INTsysthread_start(int prio, int stksz, thrstartfunc fn, void *arg); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1500 | NSAPI_PUBLIC void INTsysthread_sleep(int milliseconds); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1501 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1502 | #define systhread_start INTsysthread_start |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1503 | #define systhread_sleep INTsysthread_sleep |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1504 | |
1 | 1505 | |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1506 | void webserver_atrestart(void (*fn)(void *), void *data); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1507 | #define magnus_atrestart webserver_atrestart |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1508 | #define daemon_atrestart webserver_atrestart |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1509 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1510 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1511 | NSAPI_PUBLIC int INTshexp_match(const char *str, const char *exp); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1512 | #define shexp_match INTshexp_match |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1513 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1514 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1515 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1516 | NSAPI_PUBLIC char *session_dns_lookup(Session *s, int verify); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1517 | |
1 | 1518 | |
8
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1519 | |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1520 | /* netbuf functions */ |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1521 | NSAPI_PUBLIC netbuf *netbuf_open(SYS_NETFD sd, int sz); |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1522 | |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1523 | NSAPI_PUBLIC void netbuf_close(netbuf *buf); |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1524 | |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1525 | NSAPI_PUBLIC unsigned char * netbuf_replace(netbuf *buf, |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1526 | unsigned char *inbuf, int pos, int cursize, int maxsize); |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1527 | |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1528 | NSAPI_PUBLIC int netbuf_next(netbuf *buf, int advance); |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1529 | |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1530 | NSAPI_PUBLIC int netbuf_getbytes(netbuf *buf, char *buffer, int size); |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1531 | |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1532 | NSAPI_PUBLIC int netbuf_grab(netbuf *buf, int sz); |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1533 | |
21
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1534 | #define netbuf_open netbuf_open |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1535 | #define netbuf_close netbuf_close |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1536 | #define netbuf_replace netbuf_replace |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1537 | #define netbuf_next netbuf_next |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1538 | #define netbuf_getbytes netbuf_getbytes |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1539 | #define netbuf_grab netbuf_grab |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1540 | |
58
66c22e54aa90
webdav uses the vfs api
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
56
diff
changeset
|
1541 | /* file */ |
66c22e54aa90
webdav uses the vfs api
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
56
diff
changeset
|
1542 | NSAPI_PUBLIC int system_fread(SYS_FILE fd, void *buf, int nbyte); |
66c22e54aa90
webdav uses the vfs api
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
56
diff
changeset
|
1543 | NSAPI_PUBLIC int system_fwrite(SYS_FILE fd, const void *buf, int nbyte); |
189
a2438f6d1e73
adds vfs pread/pwrite functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
187
diff
changeset
|
1544 | NSAPI_PUBLIC int system_pread(SYS_FILE fd, void *buf, int nbyte, off_t offset); |
a2438f6d1e73
adds vfs pread/pwrite functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
187
diff
changeset
|
1545 | NSAPI_PUBLIC int system_pwrite(SYS_FILE fd, const void *buf, int nbyte, off_t offset); |
66
74babc0082b7
added authentication cache
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
65
diff
changeset
|
1546 | NSAPI_PUBLIC off_t system_lseek(SYS_FILE fd, off_t offset, int whence); |
58
66c22e54aa90
webdav uses the vfs api
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
56
diff
changeset
|
1547 | NSAPI_PUBLIC int system_fclose(SYS_FILE fd); |
66c22e54aa90
webdav uses the vfs api
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
56
diff
changeset
|
1548 | |
172
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1549 | NSAPI_PUBLIC int system_aio_read(aiocb_s *aiocb); |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1550 | NSAPI_PUBLIC int system_aio_write(aiocb_s *aiocb); |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1551 | |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1552 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1553 | int log_ereport(int degree, const char *format, ...); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1554 | int log_ereport_v(int degree, const char *format, va_list args); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1555 | int log_error(int degree, const char *func, Session *sn, Request *rq, |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1556 | const char *format, ...); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1557 | int log_error_v(int degree, const char *func, Session *sn, Request *rq, |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1558 | const char *format, va_list args); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1559 | |
67
50505dc3f8a6
dynamic thread pool
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
66
diff
changeset
|
1560 | /* new macro and function definitions begin */ |
50505dc3f8a6
dynamic thread pool
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
66
diff
changeset
|
1561 | |
63
66442f81f823
supports file system ACLs on Solaris
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
61
diff
changeset
|
1562 | NSAPI_PUBLIC int util_errno2status(int errno_value); // new |
56
c6cf20b09043
added vfs_mkdir and vfs_unlink
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
54
diff
changeset
|
1563 | #define util_errno2status util_errno2status |
81
d25825f37967
preparation for admin interface
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
68
diff
changeset
|
1564 | NSAPI_PUBLIC pblock* util_parse_param(pool_handle_t *pool, char *query); |
d25825f37967
preparation for admin interface
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
68
diff
changeset
|
1565 | #define util_parse_param util_parse_param |
21
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1566 | |
172
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1567 | void nsapi_function_return(Session *sn, Request *rq, int ret); |
21
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1568 | |
59
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1569 | // threadpool |
67
50505dc3f8a6
dynamic thread pool
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
66
diff
changeset
|
1570 | threadpool_t* threadpool_new(int min, int max); |
59
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1571 | void* threadpool_func(void *data); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1572 | threadpool_job* threadpool_get_job(threadpool_t *pool); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1573 | void threadpool_run(threadpool_t *pool, job_callback_f func, void *data); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1574 | |
172
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1575 | int event_pollin(EventHandler *ev, SYS_NETFD fd, Event *event); |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1576 | int event_pollout(EventHandler *ev, SYS_NETFD fd, Event *event); |
5580517faafc
adds public aio and poll api and asynchronous send_range function
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
1577 | int event_removepoll(EventHandler *ev, SYS_NETFD fd); |
187
4384bfbb7e26
adds platform independent aio functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
185
diff
changeset
|
1578 | int event_send(EventHandler *ev, Event *event); |
87
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1579 | |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1580 | // assert |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1581 | void ws_log_assert(const char *file, const char *func, int line); |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1582 | #ifdef _DEBUG |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1583 | #ifndef __FUNCTION__ |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1584 | #define __FUNCTION__ __func__ |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1585 | #endif |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1586 | #define WS_ASSERT(c) if(!c) ws_log_assert(__FILE__, __FUNCTION__, __LINE__) |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1587 | #else |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1588 | #define WS_ASSERT(c) |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1589 | #endif |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1590 | |
8
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1591 | /* end new macro and function definitions */ |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1592 | |
1 | 1593 | #define SYS_STDERR STDERR_FILENO |
1594 | ||
1595 | #ifdef XP_WIN32 | |
1596 | ||
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1597 | //typedef HANDLE pid_t; // TODO |
1 | 1598 | |
1599 | #define ERROR_PIPE \ | |
1600 | (ERROR_BROKEN_PIPE | ERROR_BAD_PIPE | \ | |
1601 | ERROR_PIPE_BUSY | ERROR_PIPE_LISTENING | ERROR_PIPE_NOT_CONNECTED) | |
1602 | #define CONVERT_TO_PRINTABLE_FORMAT(Filename) \ | |
1603 | { \ | |
1604 | register char *s; \ | |
1605 | if (Filename) \ | |
1606 | for (s = Filename; *s; s++) \ | |
1607 | if ( *s == '\\') \ | |
1608 | *s = '/'; \ | |
1609 | } | |
1610 | #define CONVERT_TO_NATIVE_FS(Filename) \ | |
1611 | { \ | |
1612 | register char *s; \ | |
1613 | if (Filename) \ | |
1614 | for (s = Filename; *s; s++) \ | |
1615 | if ( *s == '/') \ | |
1616 | *s = '\\'; \ | |
1617 | } | |
1618 | ||
1619 | #ifdef INTNSAPI | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1620 | //NSAPI_PUBLIC extern nsapi_dispatch_t *__nsapi30_table; |
1 | 1621 | #if NSAPI_VERSION >= 302 |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1622 | //NSAPI_PUBLIC extern nsapi302_dispatch_t *__nsapi302_table; |
1 | 1623 | #endif /* NSAPI_VERSION >= 302 */ |
1624 | #if NSAPI_VERSION >= 303 | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1625 | //NSAPI_PUBLIC extern nsapi303_dispatch_t *__nsapi303_table; |
1 | 1626 | #endif /* NSAPI_VERSION >= 303 */ |
1627 | #else | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1628 | //__declspec(dllimport) nsapi_dispatch_t *__nsapi30_table; |
1 | 1629 | #if NSAPI_VERSION >= 302 |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1630 | //__declspec(dllimport) nsapi302_dispatch_t *__nsapi302_table; |
1 | 1631 | #endif /* NSAPI_VERSION >= 302 */ |
1632 | #if NSAPI_VERSION >= 303 | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1633 | //__declspec(dllimport) nsapi303_dispatch_t *__nsapi303_table; |
1 | 1634 | #endif /* NSAPI_VERSION >= 303 */ |
1635 | #endif /* INTNSAPI */ | |
1636 | ||
1637 | #else /* !XP_WIN32 */ | |
1638 | ||
1639 | ||
1640 | #endif /* XP_WIN32 */ | |
1641 | ||
1642 | #ifdef __cplusplus | |
1643 | } | |
1644 | #endif | |
1645 | ||
1646 | #endif /* !PUBLIC_NSAPI_H */ |