You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Roy Fielding <fi...@hyperreal.com> on 1997/03/07 18:43:38 UTC

cvs commit: apache/src CHANGES rfc1413.c

fielding    97/03/07 09:43:37

  Modified:    src       CHANGES rfc1413.c
  Log:
  Reduced IdentityCheck timeout to 30 seconds, as per RFC 1413 minimum.
  
  Submitted by: Ken Coar, PR #190
  Reviewed by: Chuck Murcko, Roy Fielding
  
  Revision  Changes    Path
  1.191     +3 -0      apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.190
  retrieving revision 1.191
  diff -C3 -r1.190 -r1.191
  *** CHANGES	1997/03/07 16:42:06	1.190
  --- CHANGES	1997/03/07 17:43:35	1.191
  ***************
  *** 1,5 ****
  --- 1,8 ----
    Changes with Apache 1.2b8
    
  +   *) Reduced IdentityCheck timeout to 30 seconds, as per RFC 1413 minimum.
  +      [Ken Coar]
  + 
      *) Fixed problem with ErrorDocument not working for virtual hosts
         due to one of the performance changes in 1.2b7. [Dean Gaudet]
    
  
  
  
  1.9       +1 -1      apache/src/rfc1413.c
  
  Index: rfc1413.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/rfc1413.c,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -C3 -r1.8 -r1.9
  *** rfc1413.c	1997/01/20 04:28:16	1.8
  --- rfc1413.c	1997/03/07 17:43:36	1.9
  ***************
  *** 93,99 ****
    /* rough limit on the amount of data we accept. */
    #define RFC1413_MAXDATA 1000
    
  ! #define RFC1413_TIMEOUT	60
    #define	ANY_PORT	0		/* Any old port will do */
    #define FROM_UNKNOWN  "unknown"
    
  --- 93,99 ----
    /* rough limit on the amount of data we accept. */
    #define RFC1413_MAXDATA 1000
    
  ! #define RFC1413_TIMEOUT	30
    #define	ANY_PORT	0		/* Any old port will do */
    #define FROM_UNKNOWN  "unknown"