mirror of
https://github.com/nginx/nginx.git
synced 2025-06-07 09:42:39 +08:00
Fixed port range checking.
This commit is contained in:
parent
c5762451a9
commit
f12d6ceb65
@ -671,7 +671,7 @@ ngx_parse_inet_url(ngx_pool_t *pool, ngx_url_t *u)
|
||||
|
||||
n = ngx_atoi(port, len);
|
||||
|
||||
if (n < 1 || n > 65536) {
|
||||
if (n < 1 || n > 65535) {
|
||||
u->err = "invalid port";
|
||||
return NGX_ERROR;
|
||||
}
|
||||
@ -695,7 +695,7 @@ ngx_parse_inet_url(ngx_pool_t *pool, ngx_url_t *u)
|
||||
|
||||
if (n != NGX_ERROR) {
|
||||
|
||||
if (n < 1 || n > 65536) {
|
||||
if (n < 1 || n > 65535) {
|
||||
u->err = "invalid port";
|
||||
return NGX_ERROR;
|
||||
}
|
||||
@ -835,7 +835,7 @@ ngx_parse_inet6_url(ngx_pool_t *pool, ngx_url_t *u)
|
||||
|
||||
n = ngx_atoi(port, len);
|
||||
|
||||
if (n < 1 || n > 65536) {
|
||||
if (n < 1 || n > 65535) {
|
||||
u->err = "invalid port";
|
||||
return NGX_ERROR;
|
||||
}
|
||||
|
@ -783,7 +783,7 @@ ngx_mail_auth_http_process_headers(ngx_mail_session_t *s,
|
||||
sin->sin_family = AF_INET;
|
||||
|
||||
port = ngx_atoi(ctx->port.data, ctx->port.len);
|
||||
if (port == NGX_ERROR || port < 1 || port > 65536) {
|
||||
if (port == NGX_ERROR || port < 1 || port > 65535) {
|
||||
ngx_log_error(NGX_LOG_ERR, s->connection->log, 0,
|
||||
"auth http server %V sent invalid server "
|
||||
"port:\"%V\"",
|
||||
|
Loading…
Reference in New Issue
Block a user