HTTP Client: Fix handling on connection timeout

If a destination is not reachable, then the connection will timeout
in doConnect().  This causes issues later when the client attempts to
resend the message.

The error check in doClose() should not exit early since that will
result in the connection's status not being marked as closed and
thus it will never get reused.

Similarly, doCloseAndRetry() should not exit early since that will
cause the retry flow to hang and the connection's callback function
will not get deleted.

Tested:
Used Redfish Aggregation patches in the chain through
https://gerrit.openbmc.org/c/openbmc/bmcweb/+/54896 to verify that
requests to collections such as /redfish/v1/Chassis no longer hang
when the specified Satellite BMC does not exist

Signed-off-by: Carson Labrado <clabrado@google.com>
Change-Id: Ic8369b0de8efb00ff168bc1ed43f1d7fd6c7366a
diff --git a/http/http_client.hpp b/http/http_client.hpp
index f59438b..c9526bb 100644
--- a/http/http_client.hpp
+++ b/http/http_client.hpp
@@ -63,7 +63,6 @@
     recvInProgress,
     recvFailed,
     idle,
-    closeInProgress,
     closed,
     suspended,
     terminated,
@@ -355,7 +354,6 @@
 
     void doClose()
     {
-        state = ConnState::closeInProgress;
         boost::beast::error_code ec;
         conn.socket().shutdown(boost::asio::ip::tcp::socket::shutdown_both, ec);
         conn.close();
@@ -366,18 +364,19 @@
             BMCWEB_LOG_ERROR << host << ":" << std::to_string(port)
                              << ", id: " << std::to_string(connId)
                              << "shutdown failed: " << ec.message();
-            return;
         }
-        BMCWEB_LOG_DEBUG << host << ":" << std::to_string(port)
-                         << ", id: " << std::to_string(connId)
-                         << " closed gracefully";
+        else
+        {
+            BMCWEB_LOG_DEBUG << host << ":" << std::to_string(port)
+                             << ", id: " << std::to_string(connId)
+                             << " closed gracefully";
+        }
 
         state = ConnState::closed;
     }
 
     void doCloseAndRetry()
     {
-        state = ConnState::closeInProgress;
         boost::beast::error_code ec;
         conn.socket().shutdown(boost::asio::ip::tcp::socket::shutdown_both, ec);
         conn.close();
@@ -388,11 +387,13 @@
             BMCWEB_LOG_ERROR << host << ":" << std::to_string(port)
                              << ", id: " << std::to_string(connId)
                              << "shutdown failed: " << ec.message();
-            return;
         }
-        BMCWEB_LOG_DEBUG << host << ":" << std::to_string(port)
-                         << ", id: " << std::to_string(connId)
-                         << " closed gracefully";
+        else
+        {
+            BMCWEB_LOG_DEBUG << host << ":" << std::to_string(port)
+                             << ", id: " << std::to_string(connId)
+                             << " closed gracefully";
+        }
 
         // Now let's try to resend the data
         state = ConnState::retry;