diff options
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 |