summaryrefslogtreecommitdiffabout
path: root/include/kingate/fastcgi.h
Unidiff
Diffstat (limited to 'include/kingate/fastcgi.h') (more/less context) (show whitespace changes)
-rw-r--r--include/kingate/fastcgi.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/kingate/fastcgi.h b/include/kingate/fastcgi.h
index fd293b9..6f136b3 100644
--- a/include/kingate/fastcgi.h
+++ b/include/kingate/fastcgi.h
@@ -20,56 +20,71 @@ namespace kingate {
20 /** 20 /**
21 * socket file descriptor. 21 * socket file descriptor.
22 */ 22 */
23 int sock; 23 int sock;
24 24
25 /** 25 /**
26 * @param s the socket name. (if the socket starts with a colon, 26 * @param s the socket name. (if the socket starts with a colon,
27 * then it is interpreted as a tcp port number. 27 * then it is interpreted as a tcp port number.
28 * @param bl backlog listen queue depth. 28 * @param bl backlog listen queue depth.
29 */ 29 */
30 fcgi_socket(const char* s,int bl); 30 fcgi_socket(const char* s,int bl);
31 /** 31 /**
32 * @param s the file descriptor of preopened socket. 32 * @param s the file descriptor of preopened socket.
33 */ 33 */
34 fcgi_socket(int s); 34 fcgi_socket(int s);
35 ~fcgi_socket(); 35 ~fcgi_socket();
36 }; 36 };
37 37
38 /** 38 /**
39 * The implementation of the interface to the FastCGI. 39 * The implementation of the interface to the FastCGI.
40 */ 40 */
41 class fcgi_interface : public cgi_interface { 41 class fcgi_interface : public cgi_interface {
42 public: 42 public:
43 /** 43 /**
44 * buffer for sbin
45 * @see sbin
46 */
47 char buf_sbin[512];
48 /**
44 * stdin fcgi streambuf. 49 * stdin fcgi streambuf.
45 */ 50 */
46 fcgi_streambuf sbin; 51 fcgi_streambuf sbin;
47 /** 52 /**
53 * buffer for sbout
54 * @see sbout
55 */
56 char buf_sbout[512];
57 /**
48 * stdout fcgi streambuf. 58 * stdout fcgi streambuf.
49 */ 59 */
50 fcgi_streambuf sbout; 60 fcgi_streambuf sbout;
51 /** 61 /**
62 * buffer for sberr
63 * @see sberr
64 */
65 char buf_sberr[512];
66 /**
52 * stderr fcgi streambuf. 67 * stderr fcgi streambuf.
53 */ 68 */
54 fcgi_streambuf sberr; 69 fcgi_streambuf sberr;
55 /** 70 /**
56 * stdin istream. 71 * stdin istream.
57 */ 72 */
58 istream sin; 73 istream sin;
59 /** 74 /**
60 * stdout ostream. 75 * stdout ostream.
61 */ 76 */
62 ostream sout; 77 ostream sout;
63 /** 78 /**
64 * stderr ostream. 79 * stderr ostream.
65 */ 80 */
66 ostream serr; 81 ostream serr;
67 /** 82 /**
68 * The FCGI request. 83 * The FCGI request.
69 */ 84 */
70 FCGX_Request request; 85 FCGX_Request request;
71 86
72 /** 87 /**
73 * @param s the socked used for interfacing with the server. 88 * @param s the socked used for interfacing with the server.
74 * @param f the request flags (e.g. FCGI_FAIL_ON_INTR). 89 * @param f the request flags (e.g. FCGI_FAIL_ON_INTR).
75 */ 90 */