diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2023-11-02 11:57:40 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2023-11-02 13:56:18 +0100 |
commit | 0d7550715db39408a82d268026b711f454fef2f8 (patch) | |
tree | 4ab1d5fd9d1c61d37b5d174d70d6654001b0e6e2 /src/EtiReader.h | |
parent | c2467d222ec08ddc4c6f79ea01773496090f809f (diff) | |
download | dabmod-0d7550715db39408a82d268026b711f454fef2f8.tar.gz dabmod-0d7550715db39408a82d268026b711f454fef2f8.tar.bz2 dabmod-0d7550715db39408a82d268026b711f454fef2f8.zip |
Add edi_source RC param
Diffstat (limited to 'src/EtiReader.h')
-rw-r--r-- | src/EtiReader.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/EtiReader.h b/src/EtiReader.h index 29091bd..703e42a 100644 --- a/src/EtiReader.h +++ b/src/EtiReader.h @@ -221,6 +221,7 @@ class EdiTransport { void Open(const std::string& uri); bool isEnabled(void) const { return m_enabled; } + std::string getTcpUri(void) const { return m_tcp_uri; } /* Receive a packet and give it to the decoder. Returns * true if a packet was received, false in case of socket @@ -229,6 +230,7 @@ class EdiTransport { bool rxPacket(void); private: + std::string m_tcp_uri; bool m_enabled; int m_port; std::string m_bindto; |