From 2428ed917d4a0c82c956c355de60b6dff1afca23 Mon Sep 17 00:00:00 2001 From: in2 Date: Mon, 15 Mar 2004 07:29:54 +0000 Subject: no longer maintained git-svn-id: http://opensvn.csie.org/pttbbs/trunk/not-maintained@1594 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- web/board.c | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 web/board.c (limited to 'web/board.c') diff --git a/web/board.c b/web/board.c new file mode 100644 index 00000000..43347912 --- /dev/null +++ b/web/board.c @@ -0,0 +1,39 @@ +#include "mod_ptt.h" + +extern int numboards; +extern boardheader_t *bcache; +extern int ptt_handler(request_rec *r, void *args); + +int bbs_board(request_rec *r, void *args) +{ + int i; + r->content_type = "text/xml"; + ap_send_http_header(r); + ap_rputs("
Ptt \n", r); +return ptt_handler (r,args); + + ap_rprintf(r,"r->filename : %s
",r->filename); + ap_rprintf(r,"r->request_time : %s
",ctime(&r->request_time)); + ap_rprintf(r,"r->method : %s
",r->method); + ap_rprintf(r,"r->method_number : %d
",r->method_number); + ap_rprintf(r,"r->path_info : %s
",r->path_info); + ap_rprintf(r,"r->args : %s
",r->args); + ap_rprintf(r,"r->unparsed_uri : %s
",r->unparsed_uri); + ap_rprintf(r,"r->uri : %s
",r->uri); + ap_rprintf(r,"r->handler : %s
",r->handler); + ap_rprintf(r,"r->content_type : %s
",r->content_type); + ap_rprintf(r, "Server built: \"%s\"\n", ap_get_server_built()); + + ap_rputs("
Ptt \n", r); + + ap_rputs("",r); +/* + for(i = 0; i++ < numboards; i++) + { + ap_rputs("",r); + ap_rputs("",r); + } +*/ + + return OK; +} -- cgit v1.2.3