]> granicus.if.org Git - apache/commitdiff
Missed these first time round... More apr_port_t changes.
authorDavid Reid <dreid@apache.org>
Wed, 8 Nov 2000 11:42:21 +0000 (11:42 +0000)
committerDavid Reid <dreid@apache.org>
Wed, 8 Nov 2000 11:42:21 +0000 (11:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86867 13f79535-47bb-0310-9956-ffa450edef68

include/ap_listen.h
include/http_core.h
include/http_vhost.h

index de2f603599474dff3c0452879de0220ea0905bdd..991f744c59432d6f884f24c58da5b445b9000bdc 100644 (file)
@@ -121,7 +121,7 @@ int ap_setup_listeners(server_rec *s);
  * @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
index df6d07cdb4452917ee42f536e47e8400358d1881..a7fdeb140a6b2c08a87e085f93e3778ecc3e885a 100644 (file)
@@ -206,9 +206,9 @@ AP_DECLARE(const char *) ap_get_server_name(request_rec *r);
  * 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
index 8262c030a114db565a6beca9ae84b62e56ef625b..f8c56874b3f7512a3f535c54a2c96995bb45e992 100644 (file)
@@ -110,10 +110,10 @@ void ap_update_vhost_from_headers(request_rec *r);
  * @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
 }