fastdo  0.5.12
webx_FcgiRequest.hpp
浏览该文件的文档.
1 #pragma once
2 
3 namespace eienwebx
4 {
5 
8 {
9 public:
10  FcgiRequest( FcgiApp * fcgiApp );
11 
12  virtual ~FcgiRequest();
13 
15  int init( int sock, int flags );
16 
20  void free( bool close = true );
21 
25  void finish();
26 
28  bool accept();
29 
30 
32  virtual bool processData();
33 
35  virtual void dumpEnv( Response * rsp, char * * envp = NULL ) const;
36 
37 private:
39 
40  friend class FcgiApp;
42 };
43 
44 
45 
46 } // namespace eienwebx
#define EIENWEBX_DLL
#define DISABLE_OBJECT_COPY(clsname)
Definition: utilities.hpp:78
代表一个客户响应
FCGI App类
Definition: webx_FcgiApp.hpp:9