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