src/server/request.c

changeset 14
b8bf95b39952
parent 13
1fdbf4170ef4
child 15
cff9c4101dd7
equal deleted inserted replaced
13:1fdbf4170ef4 14:b8bf95b39952
1 /*
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3 *
4 * Copyright 2011 Olaf Wintermann. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
27 */
28
29 #include "request.h"
30
31 #include "pblock.h"
32 #include "httprequest.h"
33
34
35 /* Code from req.cpp */
36 /* fremden Code durch eigenen ersetzen */
37
38 /* -------------------------- request_initialize -------------------------- */
39
40 int request_initialize(
41 pool_handle_t *pool,
42 HTTPRequest *hrq,
43 NSAPIRequest *nrq)
44 {
45 Request *rq = &nrq->rq;
46
47 rq->vars = pblock_create_pool(pool, REQ_HASHSIZE);
48 if (!rq->vars)
49 return 1;
50 rq->reqpb = pblock_create_pool(pool, REQ_HASHSIZE);
51 if (!rq->reqpb)
52 return 1;
53 rq->loadhdrs = 0;
54 rq->headers = pblock_create_pool(pool, REQ_HASHSIZE);
55 if (!rq->headers)
56 return 1;
57 rq->senthdrs = 0;
58 rq->srvhdrs = pblock_create_pool(pool, REQ_HASHSIZE);
59 if (!rq->srvhdrs)
60 return 1;
61
62 rq->os = NULL;
63 rq->tmpos = NULL;
64 rq->statpath = NULL;
65 rq->staterr = NULL;
66 rq->finfo = NULL;
67 rq->aclstate = 0;
68 rq->acldirno = 0;
69 rq->aclname = NULL;
70 rq->aclpb = NULL;
71 rq->acllist = NULL;
72 rq->request_is_cacheable = 0;
73 rq->directive_is_cacheable = 0;
74 rq->cached_headers = NULL;
75 rq->cached_headers_len = 0;
76 rq->unused = NULL;
77 //rq->req_start = ft_time(); // TODO: ft_time
78 rq->protv_num = 0;
79 rq->method_num = -1;
80 //PR_ASSERT(sizeof(rq->rq_attr) == sizeof(RQATTR)); // TODO: assert
81 *(RQATTR *) &rq->rq_attr = 0;
82 //rq->hostname = pool_strdup(pool, hostname); // TODO: hostname
83 rq->allowed = 0;
84 rq->byterange = 0;
85 rq->status_num = 0;
86 rq->staterrno = 0;
87 rq->orig_rq = rq;
88
89 // TODO: nrq
90
91 /* NSAPI execution context */
92 nrq->context.last_req_code = REQ_NOACTION;
93
94 nrq->context.objset_index = -1;
95 nrq->context.dtable_index = 0;
96
97 return 0;
98 }

mercurial