dreid 00/11/08 03:42:22
Modified: src/include ap_listen.h http_core.h http_vhost.h
Log:
Missed these first time round... More apr_port_t changes.
Revision Changes Path
1.20 +1 -1 apache-2.0/src/include/ap_listen.h
Index: ap_listen.h
===================================================================
RCS file: /home/cvs/apache-2.0/src/include/ap_listen.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ap_listen.h 2000/09/08 14:59:42 1.19
+++ ap_listen.h 2000/11/08 11:42:21 1.20
@@ -121,7 +121,7 @@
* @warning This function is only available to Windows platforms, or the
* Prefork or SPMT_OS2 MPMs.
*/
-int ap_listen_open(process_rec *process, unsigned port);
+int ap_listen_open(process_rec *process, apr_port_t port);
#endif
/* Although these functions are exported from libmain, they are not really
1.31 +2 -2 apache-2.0/src/include/http_core.h
Index: http_core.h
===================================================================
RCS file: /home/cvs/apache-2.0/src/include/http_core.h,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- http_core.h 2000/10/18 17:42:44 1.30
+++ http_core.h 2000/11/08 11:42:21 1.31
@@ -206,9 +206,9 @@
* Get the current server port
* @param The current request
* @return The server's port
- * @deffunc unsigned ap_get_server_port(const request_rec *r)
+ * @deffunc apr_port_t ap_get_server_port(const request_rec *r)
*/
-AP_DECLARE(unsigned) ap_get_server_port(const request_rec *r);
+AP_DECLARE(apr_port_t) ap_get_server_port(const request_rec *r);
/**
* Return the limit on bytes in request msg body
* @param r The current request
1.10 +2 -2 apache-2.0/src/include/http_vhost.h
Index: http_vhost.h
===================================================================
RCS file: /home/cvs/apache-2.0/src/include/http_vhost.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- http_vhost.h 2000/10/16 06:04:34 1.9
+++ http_vhost.h 2000/11/08 11:42:21 1.10
@@ -110,10 +110,10 @@
* @param port The port from the headers
* @return return 1 if the host:port matches any of the aliases of r->server,
* return 0 otherwise
- * @deffunc int ap_matches_request_vhost(request_rec *r, const char *host,
unsigned port)
+ * @deffunc int ap_matches_request_vhost(request_rec *r, const char *host,
apr_port_t port)
*/
AP_DECLARE(int) ap_matches_request_vhost(request_rec *r, const char *host,
- unsigned port);
+ apr_port_t port);
#ifdef __cplusplus
}