comparison src/http/ngx_http_core_module.c @ 6564:19db5a6bc34e

Realip: port support in X-Real-IP and X-Forwarded-For. Now, the module extracts optional port which may accompany an IP address. This custom extension is introduced, among other things, in order to facilitate logging of original client ports. Addresses with ports are expected to be in the RFC 3986 format, that is, with IPv6 addresses in square brackets. E.g., "X-Real-IP: [2001:0db8::1]:12345" sets client port ($remote_port) to 12345.
author Dmitry Volyntsev <xeioex@nginx.com>
date Mon, 23 May 2016 18:44:23 +0300
parents c90cf79d0e1d
children b802b7e1d9bc
comparison
equal deleted inserted replaced
6563:26feae43987f 6564:19db5a6bc34e
2908 p++; 2908 p++;
2909 break; 2909 break;
2910 } 2910 }
2911 } 2911 }
2912 2912
2913 if (ngx_parse_addr(r->pool, &paddr, p, xfflen - (p - xff)) != NGX_OK) { 2913 if (ngx_parse_addr_port(r->pool, &paddr, p, xfflen - (p - xff))
2914 != NGX_OK)
2915 {
2914 return NGX_DECLINED; 2916 return NGX_DECLINED;
2915 } 2917 }
2916 2918
2917 *addr = paddr; 2919 *addr = paddr;
2918 2920