/* ----------------------------------------------------------------- Name: testcgi3.c Title: CGI test program Package: Xitami web server Written: 96/10/01 Pieter Hintjens Revised: 97/04/08 Pieter Hintjens Synopsis: Generates an HTML test page containing the arguments passed to the CGI process. To build this program you must download the SFL package from www.imatix.com. Copyright: Copyright (c) 1997 iMatix License: This is free software; you can redistribute it and/or modify it under the terms of the XITAMI License Agreement as provided in the file LICENSE.TXT. This software is distributed in the hope that it will be useful, but without any warranty. -------------------------------------------------------------------*/ #include "sfl.h" int main (int argc, char *argv []) { /* Generates an error status header */ puts ("Status: 403 Really Forbidden"); puts (""); puts ("This URL is Really Forbidden."); return (EXIT_SUCCESS); }