summaryrefslogtreecommitdiff
path: root/modules/echo
diff options
context:
space:
mode:
authorGraham Leggett <minfrin@apache.org>2011-12-14 01:10:52 +0000
committerGraham Leggett <minfrin@apache.org>2011-12-14 01:10:52 +0000
commitcb21a0dbcc89c272f55ad09327deea072f7c3648 (patch)
tree7f4951cc22610cb59c375e75c308b8aa139a4549 /modules/echo
parent8cea5c42759dfdd86c7fa2d5566f164f2e29b0df (diff)
downloadhttpd-cb21a0dbcc89c272f55ad09327deea072f7c3648.tar.gz
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 'modules/echo')
-rw-r--r--modules/echo/mod_echo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/echo/mod_echo.c b/modules/echo/mod_echo.c
index e2c45620d5..b8943363cd 100644
--- a/modules/echo/mod_echo.c
+++ b/modules/echo/mod_echo.c
@@ -154,7 +154,7 @@ static int process_echo_connection(conn_rec *c)
if (!APR_STATUS_IS_EOF(rv) && ! APR_STATUS_IS_TIMEUP(rv))
ap_log_error(APLOG_MARK, APLOG_INFO, rv, c->base_server, APLOGNO(01611)
"ProtocolEcho: Failure reading from %s",
- c->peer_ip);
+ c->client_ip);
break;
}
@@ -163,7 +163,7 @@ static int process_echo_connection(conn_rec *c)
apr_brigade_cleanup(bb);
ap_log_error(APLOG_MARK, APLOG_INFO, rv, c->base_server, APLOGNO(01612)
"ProtocolEcho: Error - read empty brigade from %s!",
- c->peer_ip);
+ c->client_ip);
break;
}
@@ -181,7 +181,7 @@ static int process_echo_connection(conn_rec *c)
if (rv != APR_SUCCESS) {
ap_log_error(APLOG_MARK, APLOG_INFO, rv, c->base_server, APLOGNO(01613)
"ProtocolEcho: Failure writing to %s",
- c->peer_ip);
+ c->client_ip);
break;
}
apr_brigade_cleanup(bb);