File tree 1 file changed +12
-11
lines changed
1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -109,18 +109,19 @@ void TcpServer::listen(uint16_t port) {
109
109
if (::getaddrinfo (nullptr , std::to_string (port).c_str (), &hints, &result))
110
110
throw std::runtime_error (" Resolution failed for local address" );
111
111
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
-
123
112
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
+
124
125
std::unique_lock lock (mSockMutex );
125
126
PLOG_VERBOSE << " Creating TCP server socket" ;
126
127
You can’t perform that action at this time.
0 commit comments