2d141d809b9fa490d26e81c56557d1574559920d
[svn/Cll1h/.git] / demos / fastcgi / fastcgi.c
1 #define USE_LIBRARY_FASTCGI
2 #include "cll1.h"
3
4 program
5 {
6 int count = 0;
7 while_fastcgi_accept
8 {
9 printf("Content-type: text/html\r\n"
10 "\r\n"
11 "<title>FastCGI Hello!</title>"
12 "<h1>FastCGI Hello!</h1>"
13 "Request number %d running on host <i>%s</i>\n",
14 ++count, getenv("SERVER_NAME"));
15 }
16 }
This page took 0.262701 seconds and 4 git commands to generate.