-rw-r--r-- | include/sitecing/sitecing_interface_cgi.h | 9 | ||||
-rw-r--r-- | lib/sitecing_interface_cgi.cc | 2 |
2 files changed, 4 insertions, 7 deletions
diff --git a/include/sitecing/sitecing_interface_cgi.h b/include/sitecing/sitecing_interface_cgi.h index da538d6..d17cdb7 100644 --- a/include/sitecing/sitecing_interface_cgi.h +++ b/include/sitecing/sitecing_interface_cgi.h | |||
@@ -3,9 +3,10 @@ | |||
3 | 3 | ||
4 | #include <sstream> | 4 | #include <sstream> |
5 | #include <string> | 5 | #include <string> |
6 | #include <map> | 6 | #include <map> |
7 | #include "kingate/cgi_gateway.h" | 7 | #include <kingate/cgi_gateway.h> |
8 | #include <kingate/headers.h> | ||
8 | #include "sitecing/sitecing_interface.h" | 9 | #include "sitecing/sitecing_interface.h" |
9 | #include "sitecing/sitespace.h" | 10 | #include "sitecing/sitespace.h" |
10 | 11 | ||
11 | /** | 12 | /** |
@@ -25,15 +26,11 @@ namespace sitecing { | |||
25 | * Pointer to the CGI gateway interface. | 26 | * Pointer to the CGI gateway interface. |
26 | */ | 27 | */ |
27 | kingate::cgi_gateway* cgigw; | 28 | kingate::cgi_gateway* cgigw; |
28 | /** | 29 | /** |
29 | * Type for the map of headers to spit out. | ||
30 | */ | ||
31 | typedef map<string,string> headers_t; | ||
32 | /** | ||
33 | * The list of headers to spit out. | 30 | * The list of headers to spit out. |
34 | */ | 31 | */ |
35 | headers_t headers; | 32 | kingate::headers headers; |
36 | /** | 33 | /** |
37 | * Here is where we prebuffer output. | 34 | * Here is where we prebuffer output. |
38 | */ | 35 | */ |
39 | stringbuf prebuffer; | 36 | stringbuf prebuffer; |
diff --git a/lib/sitecing_interface_cgi.cc b/lib/sitecing_interface_cgi.cc index f2bd093..59ae25a 100644 --- a/lib/sitecing_interface_cgi.cc +++ b/lib/sitecing_interface_cgi.cc | |||
@@ -41,9 +41,9 @@ namespace sitecing { | |||
41 | void sitecing_interface_cgi::flush_headers() { | 41 | void sitecing_interface_cgi::flush_headers() { |
42 | assert(cgigw); | 42 | assert(cgigw); |
43 | if(headers_flushed) | 43 | if(headers_flushed) |
44 | return; | 44 | return; |
45 | for(headers_t::const_iterator i=headers.begin();i!=headers.end();i++) | 45 | for(kingate::headers::const_iterator i=headers.begin();i!=headers.end();i++) |
46 | cgigw->out() << i->first << ": " << i->second << "\n"; | 46 | cgigw->out() << i->first << ": " << i->second << "\n"; |
47 | cgigw->out() << "\n"; | 47 | cgigw->out() << "\n"; |
48 | headers_flushed = true; | 48 | headers_flushed = true; |
49 | } | 49 | } |