diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-11-16 08:54:40 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-11-16 08:54:40 +0100 |
commit | eb523e91f692ae0ef9d069e11a2a177a02431c28 (patch) | |
tree | f55a9d2670ff129a995813df1d66487cb2306fff /lib/edioutput/PFT.h | |
parent | 57fb9afea4c1db9d33c4ba94a681a36b0f80af40 (diff) | |
download | dabmux-eb523e91f692ae0ef9d069e11a2a177a02431c28.tar.gz dabmux-eb523e91f692ae0ef9d069e11a2a177a02431c28.tar.bz2 dabmux-eb523e91f692ae0ef9d069e11a2a177a02431c28.zip |
common a676d57: EDI output: Make Transport Addressing optional
Diffstat (limited to 'lib/edioutput/PFT.h')
-rw-r--r-- | lib/edioutput/PFT.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/edioutput/PFT.h b/lib/edioutput/PFT.h index 502aa39..1019915 100644 --- a/lib/edioutput/PFT.h +++ b/lib/edioutput/PFT.h @@ -71,7 +71,10 @@ class PFT unsigned int m_dest_port = 12000; // Destination port for transport header uint16_t m_pseq = 0; size_t m_num_chunks = 0; - bool m_verbose = 0; + bool m_verbose = false; + + bool m_transport_header = false; + const uint16_t m_addr_source = 0; }; } |