You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Brian Behlendorf <br...@hyperreal.com> on 1996/07/25 21:49:10 UTC

cvs commit: apache/src httpd.h conf.h mod_proxy.c

brian       96/07/25 12:49:08

  Modified:    src       httpd.h conf.h mod_proxy.c
  Log:
  Reviewed by:	Rob Hartill
  
  Modified for AIX support by adding "HAVE_MMAP" to default defines, and
  changed the SERVICE_UNAVAILABLE define (which only mod_proxy was
  using) to HTTP_SERVICE_UNAVAILABLE.
  
  Revision  Changes    Path
  1.39      +1 -1      apache/src/httpd.h
  
  Index: httpd.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/httpd.h,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -C3 -r1.38 -r1.39
  *** httpd.h	1996/07/16 19:39:14	1.38
  --- httpd.h	1996/07/25 19:49:02	1.39
  ***************
  *** 258,264 ****
    #define SERVER_ERROR 500
    #define NOT_IMPLEMENTED 501
    #define BAD_GATEWAY 502
  ! #define SERVICE_UNAVAILABLE 503
    #define RESPONSE_CODES 10
    
    #define METHODS 6
  --- 258,264 ----
    #define SERVER_ERROR 500
    #define NOT_IMPLEMENTED 501
    #define BAD_GATEWAY 502
  ! #define HTTP_SERVICE_UNAVAILABLE 503
    #define RESPONSE_CODES 10
    
    #define METHODS 6
  
  
  
  1.25      +1 -0      apache/src/conf.h
  
  Index: conf.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/conf.h,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -C3 -r1.24 -r1.25
  *** conf.h	1996/07/25 19:32:27	1.24
  --- conf.h	1996/07/25 19:49:03	1.25
  ***************
  *** 116,121 ****
  --- 116,122 ----
    #undef NO_SETSID
    #define HAVE_SYS_SELECT_H
    #define JMP_BUF sigjmp_buf
  + #define HAVE_MMAP
    
    #elif defined(ULTRIX)
    #define HAVE_GMTOFF
  
  
  
  1.33      +1 -1      apache/src/mod_proxy.c
  
  Index: mod_proxy.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_proxy.c,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -C3 -r1.32 -r1.33
  *** mod_proxy.c	1996/07/03 15:02:58	1.32
  --- mod_proxy.c	1996/07/25 19:49:04	1.33
  ***************
  *** 2668,2674 ****
    	case DEFAULT_SNEWS_PORT:
    	    break;
    	default:
  ! 	    return SERVICE_UNAVAILABLE;
        }
    
        Explain2("CONNECT to %s on port %d", host, port);
  --- 2668,2674 ----
    	case DEFAULT_SNEWS_PORT:
    	    break;
    	default:
  ! 	    return HTTP_SERVICE_UNAVAILABLE;
        }
    
        Explain2("CONNECT to %s on port %d", host, port);