MINOR: http: Use same flag for httpclose and forceclose options

Since keep-alive mode is the default mode, the passive close has disappeared,
and in the code, httpclose and forceclose options are handled the same way:
connections with the client and the server are closed as soon as the request and
the response are received and missing "Connection: close" header is added in
each direction.

So to make things clearer, forceclose is now an alias for httpclose. And
httpclose is explicitly an active close. So the old passive close does not exist
anymore. Internally, the flag PR_O_HTTP_PCL has been removed and PR_O_HTTP_FCL
has been replaced by PR_O_HTTP_CLO. In HTTP analyzers, the checks done to find
the right mode to use, depending on proxies options and "Connection: " header
value, have been simplified.

This should only be a cleanup and no changes are expected.
diff --git a/src/cfgparse.c b/src/cfgparse.c
index 1e73e32..1ca10be 100644
--- a/src/cfgparse.c
+++ b/src/cfgparse.c
@@ -4704,30 +4704,16 @@
 		 * was this one (useful for cancelling options set in defaults
 		 * sections).
 		 */
-		if (strcmp(args[1], "httpclose") == 0) {
+		if (strcmp(args[1], "httpclose") == 0 || strcmp(args[1], "forceclose") == 0) {
 			if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code))
 				goto out;
 			if (kwm == KWM_STD) {
 				curproxy->options &= ~PR_O_HTTP_MODE;
-				curproxy->options |= PR_O_HTTP_PCL;
+				curproxy->options |= PR_O_HTTP_CLO;
 				goto out;
 			}
 			else if (kwm == KWM_NO) {
-				if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)
-					curproxy->options &= ~PR_O_HTTP_MODE;
-				goto out;
-			}
-		}
-		else if (strcmp(args[1], "forceclose") == 0) {
-			if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code))
-				goto out;
-			if (kwm == KWM_STD) {
-				curproxy->options &= ~PR_O_HTTP_MODE;
-				curproxy->options |= PR_O_HTTP_FCL;
-				goto out;
-			}
-			else if (kwm == KWM_NO) {
-				if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL)
+				if ((curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)
 					curproxy->options &= ~PR_O_HTTP_MODE;
 				goto out;
 			}