Mar 9, 2015 at 8:37am
Recently i view nginx source code, and see the code below:
switch (rc) {
case NGX_HTTP_SPECIAL_RESPONSE ... NGX_HTTP_INTERNAL_SERVER_ERROR:
ngx_http_finalize_request(r, rc);
break;
default:
what does ... mean in case statement?
confusing...