You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by pi...@apache.org on 2001/04/24 18:31:35 UTC

cvs commit: jakarta-tomcat-4.0/connectors/lib wa_request.c

pier        01/04/24 09:31:35

  Modified:    connectors Makefile.in
               connectors/lib wa_request.c
  Log:
  Modified scandoc output.
  Request for WA_REQUEST.
  
  Revision  Changes    Path
  1.3       +4 -5      jakarta-tomcat-4.0/connectors/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/connectors/Makefile.in,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile.in	2001/04/17 14:54:45	1.2
  +++ Makefile.in	2001/04/24 16:31:34	1.3
  @@ -56,7 +56,7 @@
   # ========================================================================= #
   
   # @author  Pier Fumagalli <ma...@eng.sun.com>
  -# @version $Id: Makefile.in,v 1.2 2001/04/17 14:54:45 pier Exp $
  +# @version $Id: Makefile.in,v 1.3 2001/04/24 16:31:34 pier Exp $
   
   include Makedefs
   
  @@ -81,10 +81,9 @@
   		$(MAKE) -C $$DIR clean ; \
   	done
   
  -docs: include/*.h
  -	@if ! test -d docs ; then mkdir docs ; fi
  -	./scandoc/scandoc.pl -i ./scandoc/template.pl -p ./docs/ include/*.h
  -	@touch docs
  +apidocs: include/*.h
  +	@if ! test -d docs/api ; then mkdir docs/api ; fi
  +	@./scandoc/scandoc.pl -i ./scandoc/template.pl -p ./docs/api/ include/*.h
   
   allclean: clean
   
  
  
  
  1.2       +9 -1      jakarta-tomcat-4.0/connectors/lib/wa_request.c
  
  Index: wa_request.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/connectors/lib/wa_request.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- wa_request.c	2001/04/17 13:14:51	1.1
  +++ wa_request.c	2001/04/24 16:31:35	1.2
  @@ -55,7 +55,7 @@
    *                                                                           *
    * ========================================================================= */
   
  -/* @version $Id: wa_request.c,v 1.1 2001/04/17 13:14:51 pier Exp $ */
  +/* @version $Id: wa_request.c,v 1.2 2001/04/24 16:31:35 pier Exp $ */
   #include <wa.h>
   
   /* Attempt to match an URL against a web application. */
  @@ -69,5 +69,13 @@
   
   /* Invoke a request in a web application. */
   int wa_invoke(wa_request *r, wa_application *a) {
  +	return(404);
  +}
  +
  +/* Display an informative status page. */
  +int wa_status(wa_request *r, wa_application **appl, wa_connection **conn,
  +			  int anum, int cnum) {
  +	int x;
  +
   	return(404);
   }