author | Michael Krelin <hacker@klever.net> | 2007-01-03 00:57:27 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-01-03 00:57:27 (UTC) |
commit | f114b9ea0a5cb03d0e9d411090026774d6df44bf (patch) (unidiff) | |
tree | 71bc93466d7789b34c14f3639a515fdcf40c2f2d | |
parent | 555ef5892cba60983f45fea6e6bbb3c3ce2f8532 (diff) | |
download | sitecing-f114b9ea0a5cb03d0e9d411090026774d6df44bf.zip sitecing-f114b9ea0a5cb03d0e9d411090026774d6df44bf.tar.gz sitecing-f114b9ea0a5cb03d0e9d411090026774d6df44bf.tar.bz2 |
added request serial tracking to sitecing_interface
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | include/sitecing/sitecing_interface.h | 6 | ||||
-rw-r--r-- | lib/Makefile.am | 2 | ||||
-rw-r--r-- | src/sitecing-fastcgi.cc | 1 |
4 files changed, 8 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index fde326b..bb1557a 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | AC_INIT([sitecing], [0.0.1], [sitecing-bugs@klever.net]) | 1 | AC_INIT([sitecing], [0.0.2], [sitecing-bugs@klever.net]) |
2 | AC_CONFIG_SRCDIR([include/sitecing/sitecing_parser.h]) | 2 | AC_CONFIG_SRCDIR([include/sitecing/sitecing_parser.h]) |
3 | AC_CONFIG_HEADER([config.h]) | 3 | AC_CONFIG_HEADER([config.h]) |
4 | AM_INIT_AUTOMAKE([dist-bzip2]) | 4 | AM_INIT_AUTOMAKE([dist-bzip2]) |
diff --git a/include/sitecing/sitecing_interface.h b/include/sitecing/sitecing_interface.h index 0cba2bb..f0210d6 100644 --- a/include/sitecing/sitecing_interface.h +++ b/include/sitecing/sitecing_interface.h | |||
@@ -23,11 +23,15 @@ namespace sitecing { | |||
23 | * Pointer to the output stream. | 23 | * Pointer to the output stream. |
24 | */ | 24 | */ |
25 | ostream *out; | 25 | ostream *out; |
26 | /** | ||
27 | * Serial number of request being processed. | ||
28 | */ | ||
29 | long serial; | ||
26 | 30 | ||
27 | /** | 31 | /** |
28 | * The default constructor doesn't do much. | 32 | * The default constructor doesn't do much. |
29 | */ | 33 | */ |
30 | sitecing_interface() : out(0) {} | 34 | sitecing_interface() : out(0), serial(0) {} |
31 | /** | 35 | /** |
32 | * The constructor initializes the output stream pointer. | 36 | * The constructor initializes the output stream pointer. |
33 | * @param o the value to initialize the output stream pointer with. | 37 | * @param o the value to initialize the output stream pointer with. |
diff --git a/lib/Makefile.am b/lib/Makefile.am index 53d8182..496177b 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am | |||
@@ -19,4 +19,4 @@ libsitecing_la_SOURCES = \ | |||
19 | scoreboard.cc \ | 19 | scoreboard.cc \ |
20 | process_manager.cc | 20 | process_manager.cc |
21 | libsitecing_la_LDFLAGS = \ | 21 | libsitecing_la_LDFLAGS = \ |
22 | -version-info 1:0:0 | 22 | -version-info 2:0:0 |
diff --git a/src/sitecing-fastcgi.cc b/src/sitecing-fastcgi.cc index 57aba60..4768e8f 100644 --- a/src/sitecing-fastcgi.cc +++ b/src/sitecing-fastcgi.cc | |||
@@ -163,6 +163,7 @@ void sitecing_fastcgi_pm::process(int slot) { | |||
163 | if(multi) | 163 | if(multi) |
164 | sl.unlock(); | 164 | sl.unlock(); |
165 | cgi_gateway gw(fi); | 165 | cgi_gateway gw(fi); |
166 | ++scif.serial; | ||
166 | scif.prepare(&gw); | 167 | scif.prepare(&gw); |
167 | try { | 168 | try { |
168 | component_path = konforka::normalize_path(gw.path_info(),konforka::strip_leading_slash|konforka::strip_trailing_slash); | 169 | component_path = konforka::normalize_path(gw.path_info(),konforka::strip_leading_slash|konforka::strip_trailing_slash); |