325c349705dc266195749cdebb4740f9fe6cf28f
[catagits/fcgi2.git] / examples / tiny-fcgi.c
1 /* 
2  * tiny-fcgi.c --
3  *
4  *      FastCGI example program using fcgi_stdio 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-fcgi.c,v 1.1 1997/09/16 15:36:28 stanleyg Exp $";
16 #endif /* not lint */
17
18 #include "fcgi_stdio.h"
19 #include <stdlib.h>
20
21 #ifdef _WIN32
22 #include <process.h>
23 #endif
24
25 void main(void)
26 {
27     int count = 0;
28     while(FCGI_Accept() >= 0) {
29         printf("Content-type: text/html\r\n"
30                "\r\n"
31                "<title>FastCGI Hello! (C, fcgi_stdio library)</title>"
32                "<h1>FastCGI Hello! (C, fcgi_stdio library)</h1>"
33                "Request number %d running on host <i>%s</i>  "
34                "Process ID: %d\n",
35                ++count, getenv("SERVER_NAME"), getpid());
36     }
37 }