diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-10-07 04:52:50 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-10-07 04:52:50 +0200 |
commit | 0aa6201a490bfabc0ae021ceb9f1fb0f46727c5d (patch) | |
tree | a71d934d8151dd43e7c16555fef17fd749c5da70 /src/InputReader.h | |
parent | 558d74bffd9f069955af52c0b308a1d6169bcff0 (diff) | |
parent | 0330221d51421caa110b8c5dcb567cc3d0620eb9 (diff) | |
download | dabmod-0aa6201a490bfabc0ae021ceb9f1fb0f46727c5d.tar.gz dabmod-0aa6201a490bfabc0ae021ceb9f1fb0f46727c5d.tar.bz2 dabmod-0aa6201a490bfabc0ae021ceb9f1fb0f46727c5d.zip |
Merge lime output into next branch
Diffstat (limited to 'src/InputReader.h')
-rw-r--r-- | src/InputReader.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/InputReader.h b/src/InputReader.h index 63451e5..ab45d4f 100644 --- a/src/InputReader.h +++ b/src/InputReader.h @@ -144,7 +144,7 @@ class InputTcpReader : public InputReader virtual std::string GetPrintableInfo() const override; private: - TCPClient m_tcpclient; + Socket::TCPClient m_tcpclient; std::string m_uri; }; @@ -201,14 +201,6 @@ class InputZeroMQReader : public InputReader, public RemoteControllable zmq::context_t m_zmqcontext; // is thread-safe std::thread m_recv_thread; - - /* We must be careful to keep frame phase consistent. If we - * drop a single ETI frame, we will break the transmission - * frame vs. ETI frame phase. - * - * Here we keep track of how many ETI frames we must drop. - */ - int m_to_drop = 0; }; #endif |