Commit a4d09213ba49bbc5c63bda62babbb8da90199400
1 parent
6aef05cf
moved request_parser.h and request_queue.h in separeate request subfolder
Showing
8 changed files
with
15 additions
and
9 deletions
1 | +2012-02-10 06:36:43 +0100 Georg Hopp | ||
2 | + | ||
3 | + * moved request_parser.h and request_queue.h in separeate request subfolder (HEAD, master) | ||
4 | + | ||
1 | 2012-02-10 06:22:39 +0100 Georg Hopp | 5 | 2012-02-10 06:22:39 +0100 Georg Hopp |
2 | 6 | ||
3 | - * fix rather nasty reentrance bug (HEAD, master) | 7 | + * fix rather nasty reentrance bug |
4 | 8 | ||
5 | 2012-02-10 05:52:50 +0100 Georg Hopp | 9 | 2012-02-10 05:52:50 +0100 Georg Hopp |
6 | 10 |
@@ -2,7 +2,8 @@ | @@ -2,7 +2,8 @@ | ||
2 | #define __HTTP_REQUEST_PARSER_H__ | 2 | #define __HTTP_REQUEST_PARSER_H__ |
3 | 3 | ||
4 | #include "class.h" | 4 | #include "class.h" |
5 | -#include "http/request_queue.h" | 5 | +#include "http/request.h" |
6 | +#include "http/request/queue.h" | ||
6 | 7 | ||
7 | #define HTTP_REQUEST_PARSER_READ_CHUNK 1024 | 8 | #define HTTP_REQUEST_PARSER_READ_CHUNK 1024 |
8 | 9 |
@@ -4,11 +4,12 @@ | @@ -4,11 +4,12 @@ | ||
4 | #include <sys/types.h> | 4 | #include <sys/types.h> |
5 | 5 | ||
6 | #include "class.h" | 6 | #include "class.h" |
7 | -#include "http/request_parser.h" | ||
8 | #include "interface/class.h" | 7 | #include "interface/class.h" |
9 | #include "interface/stream_reader.h" | 8 | #include "interface/stream_reader.h" |
9 | + | ||
10 | +#include "http/request/parser.h" | ||
11 | +#include "http/request/queue.h" | ||
10 | #include "http/request.h" | 12 | #include "http/request.h" |
11 | -#include "http/request_queue.h" | ||
12 | 13 | ||
13 | void httpRequestParserParse(HttpRequestParser); | 14 | void httpRequestParserParse(HttpRequestParser); |
14 | 15 |
@@ -15,8 +15,8 @@ | @@ -15,8 +15,8 @@ | ||
15 | 15 | ||
16 | //* @TODO: to be removed | 16 | //* @TODO: to be removed |
17 | #include "http/request.h" | 17 | #include "http/request.h" |
18 | -#include "http/request_parser.h" | ||
19 | -#include "http/request_queue.h" | 18 | +#include "http/request/parser.h" |
19 | +#include "http/request/queue.h" | ||
20 | //* until here | 20 | //* until here |
21 | 21 | ||
22 | #undef MAX | 22 | #undef MAX |
Please
register
or
login
to post a comment