summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--include/sitecing/sitecing_interface_cgi.h9
-rw-r--r--lib/sitecing_interface_cgi.cc2
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
@@ -1,47 +1,44 @@
#ifndef __SITECING_SITECING_INTERFACE_CGI_H
#define __SITECING_SITECING_INTERFACE_CGI_H
#include <sstream>
#include <string>
#include <map>
-#include "kingate/cgi_gateway.h"
+#include <kingate/cgi_gateway.h>
+#include <kingate/headers.h>
#include "sitecing/sitecing_interface.h"
#include "sitecing/sitespace.h"
/**
* @file
* @brief The sitecing_interface_cgi class declaration.
*/
namespace sitecing {
using namespace std;
/**
* The interface to site-C-ing core for the CGI component.
*/
class sitecing_interface_cgi : public sitecing_interface {
public:
/**
* Pointer to the CGI gateway interface.
*/
kingate::cgi_gateway* cgigw;
/**
- * Type for the map of headers to spit out.
- */
- typedef map<string,string> headers_t;
- /**
* The list of headers to spit out.
*/
- headers_t headers;
+ kingate::headers headers;
/**
* Here is where we prebuffer output.
*/
stringbuf prebuffer;
/**
* Output stream, initially going to prebuffer.
*/
ostream outs;
/**
* Have headers been sent yet?
*/
bool headers_flushed;
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
@@ -33,19 +33,19 @@ namespace sitecing {
flush_headers();
outs.rdbuf(do_buffer?&prebuffer:cgigw->out().rdbuf());
}
bool sitecing_interface_cgi::is_buffering() {
return outs.rdbuf()==&prebuffer;
}
void sitecing_interface_cgi::flush_headers() {
assert(cgigw);
if(headers_flushed)
return;
- for(headers_t::const_iterator i=headers.begin();i!=headers.end();i++)
+ for(kingate::headers::const_iterator i=headers.begin();i!=headers.end();i++)
cgigw->out() << i->first << ": " << i->second << "\n";
cgigw->out() << "\n";
headers_flushed = true;
}
}