|
|
|
@ -237,24 +237,11 @@ namespace transport
@@ -237,24 +237,11 @@ namespace transport
|
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
#if ((__GNUC__ == 4) && (__GNUC_MINOR__ <= 7)) || defined(__NetBSD__) |
|
|
|
|
// due the bug in gcc 4.7. std::shared_future.get() is not const
|
|
|
|
|
CreateAESKey (m_Establisher->phase2.pubKey); |
|
|
|
|
HandlePhase2 (); |
|
|
|
|
#else |
|
|
|
|
auto s = shared_from_this (); |
|
|
|
|
// create AES key in separate thread
|
|
|
|
|
auto keyCreated = std::async (std::launch::async, [s] () |
|
|
|
|
{ |
|
|
|
|
m_Server.Work(s, [s]() -> std::function<void(void)> { |
|
|
|
|
s->CreateAESKey (s->m_Establisher->phase2.pubKey); |
|
|
|
|
}).share (); // TODO: use move capture in C++ 14 instead shared_future
|
|
|
|
|
// let other operations execute while a key gets created
|
|
|
|
|
m_Server.GetService ().post ([s, keyCreated]() |
|
|
|
|
{ |
|
|
|
|
keyCreated.get (); // we might wait if no more pending operations
|
|
|
|
|
s->HandlePhase2 (); |
|
|
|
|
return std::bind(&NTCPSession::HandlePhase2, s); |
|
|
|
|
}); |
|
|
|
|
#endif |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|