diff options
author | Graham Leggett <minfrin@apache.org> | 2011-12-14 02:10:52 +0100 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2011-12-14 02:10:52 +0100 |
commit | cb21a0dbcc89c272f55ad09327deea072f7c3648 (patch) | |
tree | 7f4951cc22610cb59c375e75c308b8aa139a4549 /include/httpd.h | |
parent | Update transformations. (diff) | |
download | apache2-cb21a0dbcc89c272f55ad09327deea072f7c3648.tar.xz apache2-cb21a0dbcc89c272f55ad09327deea072f7c3648.zip |
Further clarify the naming of the entity that directly connects to us by
calling that entity a client instead of a peer.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1214015 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/httpd.h')
-rw-r--r-- | include/httpd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/httpd.h b/include/httpd.h index 7121189641..19554b2108 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -1053,10 +1053,10 @@ struct conn_rec { /** local address */ apr_sockaddr_t *local_addr; /** remote address */ - apr_sockaddr_t *peer_addr; + apr_sockaddr_t *client_addr; /** Client's IP address */ - char *peer_ip; + char *client_ip; /** Client's DNS name, if known. NULL if DNS hasn't been checked, * "" if it has and no address was found. N.B. Only access this though * get_remote_host() */ |