summaryrefslogtreecommitdiff
path: root/icespider/fcgi/main.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <daniel.goodliffe@pressassociation.com>2016-11-11 11:14:41 +0000
committerDan Goodliffe <daniel.goodliffe@pressassociation.com>2016-11-11 11:14:41 +0000
commitff096c8135f38a0dee72ed46706693d075d7a8e8 (patch)
treedfe39ffa68ec9f2064e3943a787d23921a587024 /icespider/fcgi/main.cpp
parentPass the request into the mutator function (diff)
downloadicespider-ff096c8135f38a0dee72ed46706693d075d7a8e8.tar.bz2
icespider-ff096c8135f38a0dee72ed46706693d075d7a8e8.tar.xz
icespider-ff096c8135f38a0dee72ed46706693d075d7a8e8.zip
Split implementation details (in CGI) of headers away from core functionality
Diffstat (limited to 'icespider/fcgi/main.cpp')
-rw-r--r--icespider/fcgi/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/icespider/fcgi/main.cpp b/icespider/fcgi/main.cpp
index 2c543e1..4149cb2 100644
--- a/icespider/fcgi/main.cpp
+++ b/icespider/fcgi/main.cpp
@@ -1,6 +1,7 @@
#include <visibility.h>
#include "fcgiRequest.h"
#include "cgiRequest.h"
+#include "cgiCore.h"
using namespace IceSpider;
@@ -8,7 +9,7 @@ DLL_PUBLIC
int
main(int argc, char ** argv, char ** env)
{
- Core core;
+ CgiCore core;
if (!FCGX_IsCGI()) {
FCGX_Request request;