/*****************************************************************************/ /* CGIplusSkel.c A skeletal program serving as a template for CGI/CGIplus-capable scripts. Uses a sophisticated single function for accessing CGI variables. The function differentiates between standard and CGIplus environments and changes behaviour accordingly. The function also serves to block waiting for subsequent CGIplus requests. VERSION HISTORY --------------- 06-OCT-2004 MGD v1.3.0, CGILIB object library 24-APR-1999 MGD v1.2.0, use CGILIB.C 21-JUN-1998 MGD v1.1.0, revision of CgiVar() 08-JUN-1997 MGD v1.0.0, initial development */ /*****************************************************************************/ #include #include #include #include #include #include int IsCgiPlus = 0; char *CgiPlusEofPtr = NULL; /*****************************************************************************/ /* */ main () { int Count = 0; char *RemoteHostPtr; IsCgiPlus = ((CgiPlusEofPtr = getenv("CGIPLUSEOF")) != NULL); do { /* with CGIplus this call will block waiting for the next request */ CgiLibVar (""); RemoteHostPtr = CgiLibVar ("WWW_REMOTE_HOST"); fprintf (stdout, "Content-Type: text/html\n\ Expires: Thu, 01 Jan 1970 00:00:01 GMT\n\ \n\ %d. Hello world ... well the \  %s  part of it anyway!\n", ++Count, RemoteHostPtr); /* record-oriented , no need to flush, write end-of-output line */ if (IsCgiPlus) fprintf (stdout, "%s\n", CgiPlusEofPtr); } while (IsCgiPlus); exit (1); } /*****************************************************************************/