diff options
author | Roman Arutyunyan <arut@nginx.com> | 2015-06-16 13:45:19 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2015-06-16 13:45:19 +0300 |
commit | 4404c3fd6d10ce6e393113aabb32cfe7818ff8ac (patch) | |
tree | c8aa5543423d3e3ef102f75b077f28c6cd0a0efd /src/core/ngx_proxy_protocol.h | |
parent | 3ed1b3b5b0ab92666d1e24f9161561d580421f17 (diff) | |
download | nginx-4404c3fd6d10ce6e393113aabb32cfe7818ff8ac.tar.gz nginx-4404c3fd6d10ce6e393113aabb32cfe7818ff8ac.zip |
Core: renamed ngx_proxy_protocol_parse to ngx_proxy_protocol_read.
The new name is consistent with the ngx_proxy_protocol_write function.
Diffstat (limited to 'src/core/ngx_proxy_protocol.h')
-rw-r--r-- | src/core/ngx_proxy_protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_proxy_protocol.h b/src/core/ngx_proxy_protocol.h index e9ad5d53f..fb848f683 100644 --- a/src/core/ngx_proxy_protocol.h +++ b/src/core/ngx_proxy_protocol.h @@ -16,7 +16,7 @@ #define NGX_PROXY_PROTOCOL_MAX_HEADER 107 -u_char *ngx_proxy_protocol_parse(ngx_connection_t *c, u_char *buf, +u_char *ngx_proxy_protocol_read(ngx_connection_t *c, u_char *buf, u_char *last); u_char *ngx_proxy_protocol_write(ngx_connection_t *c, u_char *buf, u_char *last); |