Misc. updates to get a clean make on Linux. A bit of
[catagits/fcgi2.git] / examples / tiny-fcgi2.c
1 /* 
2  * tiny-fcgi2.c --
3  *
4  *      FastCGI example program using fcgiapp library
5  *
6  *
7  * Copyright (c) 1996 Open Market, Inc.
8  *
9  * See the file "LICENSE.TERMS" for information on usage and redistribution
10  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
11  *
12  */
13
14 #ifndef lint
15 static const char rcsid[] = "$Id: tiny-fcgi2.c,v 1.2 1999/01/30 22:27:37 roberts Exp $";
16 #endif /* not lint */
17
18 #if defined HAVE_UNISTD_H || defined __linux__
19 #include <unistd.h>
20 #endif
21
22 #include "fcgiapp.h"
23
24 #ifdef _WIN32
25 #include <process.h>
26 #endif
27
28 void main(void)
29 {
30     FCGX_Stream *in, *out, *err;
31     FCGX_ParamArray envp;
32     int count = 0;
33     while(FCGX_Accept(&in, &out, &err, &envp) >= 0)
34         FCGX_FPrintF(out,
35                "Content-type: text/html\r\n"
36                "\r\n"
37                "<title>FastCGI Hello! (C, fcgiapp library)</title>"
38                "<h1>FastCGI Hello! (C, fcgiapp library)</h1>"
39                "Request number %d running on host <i>%s</i>  "
40                "Process ID: %d\n",
41                ++count, FCGX_GetParam("SERVER_NAME", envp), getpid());
42 }