Cosmetic, improve readability of conditions
This commit is contained in:
@@ -30,10 +30,15 @@ feature -- Execution
|
|||||||
handle_unavailable (res)
|
handle_unavailable (res)
|
||||||
elseif requires_proxy (req) then
|
elseif requires_proxy (req) then
|
||||||
handle_use_proxy (req, res)
|
handle_use_proxy (req, res)
|
||||||
elseif maximum_uri_length > 0 and then req.request_uri.count.to_natural_32 > maximum_uri_length then
|
elseif
|
||||||
|
maximum_uri_length > 0 and then
|
||||||
|
req.request_uri.count.to_natural_32 > maximum_uri_length
|
||||||
|
then
|
||||||
handle_request_uri_too_long (res)
|
handle_request_uri_too_long (res)
|
||||||
elseif req.is_request_method ({HTTP_REQUEST_METHODS}.method_options) and then
|
elseif
|
||||||
req.request_uri.same_string ("*") then
|
req.is_request_method ({HTTP_REQUEST_METHODS}.method_options) and then
|
||||||
|
req.request_uri.same_string ("*")
|
||||||
|
then
|
||||||
handle_server_options (req, res)
|
handle_server_options (req, res)
|
||||||
else
|
else
|
||||||
create l_sess
|
create l_sess
|
||||||
|
|||||||
Reference in New Issue
Block a user