1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-05 16:55:50 +03:00

Introduce a per connection "peer_ip" and a per request "client_ip" to

distinguish between the raw IP address of the connection and the effective
IP address of the request.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1206291 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Graham Leggett
2011-11-25 19:42:04 +00:00
parent 984c3a345c
commit 394e5594d6
24 changed files with 74 additions and 74 deletions

View File

@@ -439,8 +439,8 @@ static request_rec *internal_internal_redirect(const char *new_uri,
new->prev = r;
r->next = new;
new->remote_addr = r->remote_addr;
new->remote_ip = r->remote_ip;
new->client_addr = r->client_addr;
new->client_ip = r->client_ip;
/* Must have prev and next pointers set before calling create_request
* hook.