diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2025-09-10 09:29:08 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2025-09-10 09:29:08 +0200 |
commit | d30cf3e7c31f9299062b9ef85a0949e60611509f (patch) | |
tree | 5240c7127791c2226212722c02d95ea21652a943 /lib/edioutput/Transport.h | |
parent | 91531ce72ea4d90ea541f072da54bc46ef555db8 (diff) | |
parent | b59516179a3e1842de95f8aef549a75dac1102c6 (diff) | |
download | dabmux-d30cf3e7c31f9299062b9ef85a0949e60611509f.tar.gz dabmux-d30cf3e7c31f9299062b9ef85a0949e60611509f.tar.bz2 dabmux-d30cf3e7c31f9299062b9ef85a0949e60611509f.zip |
Merge commit 'b595161' into HEAD
Diffstat (limited to 'lib/edioutput/Transport.h')
-rw-r--r-- | lib/edioutput/Transport.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/edioutput/Transport.h b/lib/edioutput/Transport.h index b8a9008..96784c0 100644 --- a/lib/edioutput/Transport.h +++ b/lib/edioutput/Transport.h @@ -118,8 +118,13 @@ class Sender { struct tcp_send_client_t : public i_sender { tcp_send_client_t( const std::string& dest_addr, - uint16_t dest_port); + uint16_t dest_port, + bool verbose); + std::string dest_addr; + uint16_t dest_port; + bool verbose; + size_t m_num_reconnects_prev = 0; Socket::TCPSendClient sock; virtual void send_packet(const std::vector<uint8_t> &frame) override; }; |