summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Fesler <jfesler@Jasons-MacBook-Pro-2.local>2020-04-18 18:17:37 -0700
committerJason Fesler <jfesler@Jasons-MacBook-Pro-2.local>2020-04-18 18:17:37 -0700
commit0d713e667112b227e3f135147c123e2a17cb2aff (patch)
tree835a180eb8beec4d17ba34bdec8832ba16499c5e
parent081b79910a3f1a8e075875ea6419bf0f8df76fc4 (diff)
downloadmod_ip-0d713e667112b227e3f135147c123e2a17cb2aff.tar.gz
mod_ip-0d713e667112b227e3f135147c123e2a17cb2aff.zip
test
-rw-r--r--mod_ip.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/mod_ip.c b/mod_ip.c
index b00c204..93a96a7 100644
--- a/mod_ip.c
+++ b/mod_ip.c
@@ -356,12 +356,15 @@ gen_output (request_rec * r, struct mod_ip_request_t *formdata)
char *p = NULL;
int added = 0;
char *myip = CLIENT_IP(r);
+ char *realip = escape_string (r, (char *) apr_table_get (r->headers_in, "X-Real-IP"));
char *mytype = "ipv4";
char *mysubtype = "";
char *VIA = "";
char *asnlist = NULL;
-
-
+
+ if realip != NULL && strlen(realip)>0 {
+ myip=realip
+ }
/* Identify X-Forwarded-For; include in results after stripping characters. */
VIA = escape_string (r, (char *) apr_table_get (r->headers_in, "Via"));