Skip to content

Commit e06c9aa

Browse files
Enhanced exception handling in TcpServer::listen()
1 parent a094538 commit e06c9aa

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

src/impl/tcpserver.cpp

+12-11
Original file line numberDiff line numberDiff line change
@@ -109,18 +109,19 @@ void TcpServer::listen(uint16_t port) {
109109
if (::getaddrinfo(nullptr, std::to_string(port).c_str(), &hints, &result))
110110
throw std::runtime_error("Resolution failed for local address");
111111

112-
static const auto find_family = [](struct addrinfo *ai_list, int family) {
113-
struct addrinfo *ai = ai_list;
114-
while (ai && ai->ai_family != family)
115-
ai = ai->ai_next;
116-
return ai;
117-
};
118-
119-
struct addrinfo *ai;
120-
if ((ai = find_family(result, AF_INET6)) == NULL && (ai = find_family(result, AF_INET)) == NULL)
121-
throw std::runtime_error("No suitable address family found");
122-
123112
try {
113+
static const auto find_family = [](struct addrinfo *ai_list, int family) {
114+
struct addrinfo *ai = ai_list;
115+
while (ai && ai->ai_family != family)
116+
ai = ai->ai_next;
117+
return ai;
118+
};
119+
120+
struct addrinfo *ai;
121+
if ((ai = find_family(result, AF_INET6)) == NULL &&
122+
(ai = find_family(result, AF_INET)) == NULL)
123+
throw std::runtime_error("No suitable address family found");
124+
124125
std::unique_lock lock(mSockMutex);
125126
PLOG_VERBOSE << "Creating TCP server socket";
126127

0 commit comments

Comments
 (0)