source: sources/src/cgiFastRequest.inline @ 1439:b23bfdd8a935

Revision 1439:b23bfdd8a935, 1.7 KB checked in by niam, 2 years ago (diff)

change contact info

Line 
1/***************************************************************************
2 *            cgiFastRequest.inline
3 *
4 *  Wed Feb  25 2009
5 *  Copyright  2009  Dmytro Milinevskyy
6 *  milinevskyy@gmail.com
7 ****************************************************************************/
8
9/*
10 *  This program is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU Lesser General Public License version 2.1 as published by
12 *  the Free Software Foundation;
13 *
14 *  This program is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU Library General Public License for more details.
18 *
19 *  You should have received a copy of the GNU Lesser General Public License
20 *  along with this program; if not, write to the Free Software
21 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
23
24/**
25 * vim indentation settings
26 * set tabstop=4
27 * set shiftwidth=4
28 */
29
30#include <libdodo/directives.h>
31
32#ifdef FASTCGI_EXT
33#include <fcgiapp.h>
34#include <unistd.h>
35
36namespace dodo {
37    namespace cgi {
38        namespace fast {
39            /**
40             * @struct __request__
41             * @brief defines fast CGI request interface
42             */
43            struct __request__ {
44                /**
45                 * constructor
46                 */
47                __request__() : request(NULL)
48                {
49                }
50
51                __request__(FCGX_Request *request) : request(request)
52                {
53                }
54
55                FCGX_Request *request; ///< fast-CGI request handler
56            };
57        };
58    };
59};
60#endif
Note: See TracBrowser for help on using the repository browser.