Implemented a new command, egw_clear, to clear http output cache.
[egate.git] / www / wtest.c
index acc5658..a84621f 100644 (file)
  * USE OR PERFORMANCE OF THIS SOFTWARE.
  *
  * $Log: wtest.c,v $
+ * Revision 1.4  1997/01/27 11:27:18  adam
+ * Implemented a new command, egw_clear, to clear http output cache.
+ * Changed prototype for function wo_clear.
+ *
  * Revision 1.3  1996/02/12 10:10:33  adam
  * Resource/config system used by the gateway.
  *
@@ -72,7 +76,7 @@ int main()
     gw_log_file (GW_LOG_ALL, "wtest_log");
     gw_log (GW_LOG_STAT, mod, "Europagate www test");
 
-    if (!(wcl = wproto_init ("/tmp/egw")))
+    if (!(wcl = wproto_init ("/tmp/egw", "wtest")))
     {
         gw_log (GW_LOG_FATAL, mod, "init");
         exit (1);
@@ -80,7 +84,8 @@ int main()
     while (wproto_process(wcl, timeout) > 0)
     {
         gw_log (GW_LOG_DEBUG, mod, "Process input");
-       wo_clear (wcl, "text/html");
+       wo_clear (wcl);
+        wo_printf (wcl, "Content-type: text/html\n\n");
        wo_printf (wcl, "<HTML><TITLE>Test page</TITLE>\n");
        wo_printf (wcl, "Hello from the test program.<BR>\n");
        wo_printf (wcl, "This is #%d time that you call me!!<BR>\n", ++counter);