summaryrefslogtreecommitdiffstats
path: root/lib/Socket.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2019-11-18 11:35:33 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2019-11-18 11:35:33 +0100
commit3e11e9019b8cc8adbe4558d25530caaf88e83718 (patch)
tree7db8eb523b68e4d897f2fbf808c5fa03513122e2 /lib/Socket.h
parent2152cd24f4176199797673729316fab752daca76 (diff)
downloaddabmux-3e11e9019b8cc8adbe4558d25530caaf88e83718.tar.gz
dabmux-3e11e9019b8cc8adbe4558d25530caaf88e83718.tar.bz2
dabmux-3e11e9019b8cc8adbe4558d25530caaf88e83718.zip
Apply common 23752f6 and e10272e
Diffstat (limited to 'lib/Socket.h')
-rw-r--r--lib/Socket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Socket.h b/lib/Socket.h
index df80b08..b9f6317 100644
--- a/lib/Socket.h
+++ b/lib/Socket.h
@@ -258,7 +258,7 @@ class TCPDataDispatcher
size_t m_max_queue_size;
- std::atomic<bool> m_running;
+ std::atomic<bool> m_running = ATOMIC_VAR_INIT(false);
std::string m_exception_data;
std::thread m_listener_thread;
TCPSocket m_listener_socket;
@@ -285,7 +285,7 @@ class TCPReceiveServer {
size_t m_blocksize = 0;
ThreadsafeQueue<std::vector<uint8_t> > m_queue;
- std::atomic<bool> m_running;
+ std::atomic<bool> m_running = ATOMIC_VAR_INIT(false);
std::string m_exception_data;
std::thread m_listener_thread;
TCPSocket m_listener_socket;