diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-04-16 23:04:35 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-04-16 23:04:35 +0000 |
commit | 44057a75ef001bfd1919e2169ec3f7f355d14c20 (patch) | |
tree | 61cc7fe3ea5d54a24197a33bd7ec87edc5d8233b /src/fastcgi.h | |
parent | 900bf84c403caf83e18928b066544f402aae1122 (diff) | |
download | libbu++-44057a75ef001bfd1919e2169ec3f7f355d14c20.tar.gz libbu++-44057a75ef001bfd1919e2169ec3f7f355d14c20.tar.bz2 libbu++-44057a75ef001bfd1919e2169ec3f7f355d14c20.tar.xz libbu++-44057a75ef001bfd1919e2169ec3f7f355d14c20.zip |
Hey, the list code is better, also, I fixed some stuff in socket (the
isBlocking function was backward), and fastcgi is actually working now!
Also added comparison functions to FString.
Diffstat (limited to 'src/fastcgi.h')
-rw-r--r-- | src/fastcgi.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fastcgi.h b/src/fastcgi.h index 83e9b83..67ec82f 100644 --- a/src/fastcgi.h +++ b/src/fastcgi.h | |||
@@ -110,11 +110,15 @@ namespace Bu | |||
110 | void write( Bu::Socket &s, Record r ); | 110 | void write( Bu::Socket &s, Record r ); |
111 | void write( Bu::Socket &s, EndRequestBody b ); | 111 | void write( Bu::Socket &s, EndRequestBody b ); |
112 | 112 | ||
113 | bool hasChannel( int iChan ); | ||
114 | |||
113 | private: | 115 | private: |
114 | Bu::ServerSocket *pSrv; | 116 | Bu::ServerSocket *pSrv; |
115 | bool bRunning; | 117 | bool bRunning; |
116 | Bu::Array<Channel *> aChannel; | 118 | Bu::Array<Channel *> aChannel; |
117 | }; | 119 | }; |
120 | |||
121 | Bu::Formatter &operator<<( Bu::Formatter &f, const Bu::FastCgi::Record &r ); | ||
118 | }; | 122 | }; |
119 | 123 | ||
120 | #endif | 124 | #endif |