Received: by taz.hyperreal.com (8.8.4/V2.0) id TAA09081; Fri, 28 Mar 1997 19:40:38 -0800 (PST) Received: by taz.hyperreal.com (8.8.4/V2.0) id TAA09075; Fri, 28 Mar 1997 19:40:36 -0800 (PST) Date: Fri, 28 Mar 1997 19:40:36 -0800 (PST) From: Roy Fielding Message-Id: <199703290340.TAA09075@taz.hyperreal.com> To: apache-cvs@hyperreal.com Subject: cvs commit: apache/src CHANGES httpd.h Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@hyperreal.com 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 */ }; --- 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 */ }; *************** *** 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... */