comparison src/core/ngx_proxy_protocol.h @ 7590:06b01840bd42

Core: moved PROXY protocol fields out of ngx_connection_t. Now a new structure ngx_proxy_protocol_t holds these fields. This allows to add more PROXY protocol fields in the future without modifying the connection structure.
author Roman Arutyunyan <arut@nginx.com>
date Mon, 21 Oct 2019 18:06:19 +0300
parents a420cb1c170b
children 89adf49fe76a
comparison
equal deleted inserted replaced
7589:486d2e0b1b6f 7590:06b01840bd42
14 14
15 15
16 #define NGX_PROXY_PROTOCOL_MAX_HEADER 107 16 #define NGX_PROXY_PROTOCOL_MAX_HEADER 107
17 17
18 18
19 struct ngx_proxy_protocol_s {
20 ngx_str_t src_addr;
21 in_port_t src_port;
22 };
23
24
19 u_char *ngx_proxy_protocol_read(ngx_connection_t *c, u_char *buf, 25 u_char *ngx_proxy_protocol_read(ngx_connection_t *c, u_char *buf,
20 u_char *last); 26 u_char *last);
21 u_char *ngx_proxy_protocol_write(ngx_connection_t *c, u_char *buf, 27 u_char *ngx_proxy_protocol_write(ngx_connection_t *c, u_char *buf,
22 u_char *last); 28 u_char *last);
23 29