We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An API change to ngx_sock_ntop() occurred in Nginx 1.5.8
A patch to ngx_http_sticky_misc.c is required:
There is an extra parameter required [socklen]. for the ngx_sock_ntop()
if (digest->data == NULL) { return NGX_ERROR; } +#if defined(nginx_version) && nginx_version >= 1005003 + digest->len = ngx_sock_ntop(in, sizeof(struct sockaddr_in), digest->data, len, 1); +#else digest->len = ngx_sock_ntop(in, digest->data, len, 1); +#endif return NGX_OK; return NGX_OK; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
An API change to ngx_sock_ntop() occurred in Nginx 1.5.8
A patch to ngx_http_sticky_misc.c is required:
There is an extra parameter required [socklen]. for the ngx_sock_ntop()
The text was updated successfully, but these errors were encountered: