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 /include/sitecing | |
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-- | include/sitecing/sitecing_interface.h | 6 |
1 files changed, 5 insertions, 1 deletions
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. |