aboutsummaryrefslogtreecommitdiff
path: root/src/fastcgi.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-06-02 18:33:41 +0000
committerMike Buland <eichlan@xagasoft.com>2009-06-02 18:33:41 +0000
commit1df2d73183a08fc37bc1b97a530c13a9445dad65 (patch)
treef4c857d12961f84db9c2594723974d99fc7b1bfb /src/fastcgi.h
parentfcaaf2927914cfda505051693f5717b4a56ec04a (diff)
downloadlibbu++-1df2d73183a08fc37bc1b97a530c13a9445dad65.tar.gz
libbu++-1df2d73183a08fc37bc1b97a530c13a9445dad65.tar.bz2
libbu++-1df2d73183a08fc37bc1b97a530c13a9445dad65.tar.xz
libbu++-1df2d73183a08fc37bc1b97a530c13a9445dad65.zip
Updates to the cgi system, and I'm putting the general CGI related stuff like
encoding and decoding and uri encoded splitting etc in one class.
Diffstat (limited to '')
-rw-r--r--src/fastcgi.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fastcgi.h b/src/fastcgi.h
index 67ec82f..4efa992 100644
--- a/src/fastcgi.h
+++ b/src/fastcgi.h
@@ -95,11 +95,11 @@ namespace Bu
95 95
96 virtual void run(); 96 virtual void run();
97 97
98 virtual void init() { }; 98 virtual void onInit() { };
99 virtual int request( const StrHash &hParams, 99 virtual int onRequest( const StrHash &hParams,
100 const Bu::FString &sStdIn, Bu::Stream &sStdOut, 100 const Bu::FString &sStdIn, Bu::Stream &sStdOut,
101 Bu::Stream &sStdErr )=0; 101 Bu::Stream &sStdErr )=0;
102 virtual void deinit() { }; 102 virtual void onUninit() { };
103 103
104 private: 104 private:
105 void read( Bu::Socket &s, Record &r ); 105 void read( Bu::Socket &s, Record &r );