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/29 04:40:36 UTC

cvs commit: apache/src CHANGES httpd.h

fielding    97/03/28 19:40:35

  Modified:    src       CHANGES httpd.h
  Log:
  Host port changed to unsigned short.
  
  Submitted by: Ken Coar, PR #276
  Reviewed by: Roy Fielding, Chuck Murcko
  
  Revision  Changes    Path
  1.215     +2 -0      apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.214
  retrieving revision 1.215
  diff -C3 -r1.214 -r1.215
  *** CHANGES	1997/03/29 01:55:56	1.214
  --- CHANGES	1997/03/29 03:40:33	1.215
  ***************
  *** 1,5 ****
  --- 1,7 ----
    Changes with Apache 1.2b8
    
  +   *) Host port changed to unsigned short. [Ken Coar] PR #276
  + 
      *) Fix typo in command definition of AuthAuthoritative. [Ken Coar] PR #246
    
      *) Defined HAVE_SHMGET for shared memory on Linux.  [Dean Gaudet]
  
  
  
  1.93      +2 -2      apache/src/httpd.h
  
  Index: httpd.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/httpd.h,v
  retrieving revision 1.92
  retrieving revision 1.93
  diff -C3 -r1.92 -r1.93
  *** httpd.h	1997/03/20 17:10:09	1.92
  --- httpd.h	1997/03/29 03:40:34	1.93
  ***************
  *** 568,574 ****
    struct server_addr_rec {
        server_addr_rec *next;
        struct in_addr host_addr;	/* The bound address, for this server */
  !     short host_port;         	/* The bound port, for this server */   
        char *virthost;		/* The name given in <VirtualHost> */
    };
    
  --- 568,574 ----
    struct server_addr_rec {
        server_addr_rec *next;
        struct in_addr host_addr;	/* The bound address, for this server */
  !     unsigned short host_port;	/* The bound port, for this server */   
        char *virthost;		/* The name given in <VirtualHost> */
    };
    
  ***************
  *** 586,592 ****
      
        char *server_admin;
        char *server_hostname;
  !     short port;                    /* for redirects, etc. */
      
        /* Log files --- note that transfer log is now in the modules... */
      
  --- 586,592 ----
      
        char *server_admin;
        char *server_hostname;
  !     unsigned short port;           /* for redirects, etc. */
      
        /* Log files --- note that transfer log is now in the modules... */