Fixed crash trigger on Ctrl+C (errno == EINTR check)

This commit is contained in:
2025-11-13 15:43:46 +01:00
parent c85f622a60
commit b37a999274
7 changed files with 28 additions and 28 deletions

View File

@@ -40,7 +40,8 @@ namespace ColumnLynx::Net::TCP {
mInsecureMode(insecureMode),
mHeartbeatTimer(mSocket.get_executor()),
mLastHeartbeatReceived(std::chrono::steady_clock::now()),
mLastHeartbeatSent(std::chrono::steady_clock::now())
mLastHeartbeatSent(std::chrono::steady_clock::now()),
mTun(tun)
{}
void start();