diff options
| author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-01-15 08:22:18 +0100 | 
|---|---|---|
| committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-01-15 08:22:18 +0100 | 
| commit | 9d6ddfcb36115084237bac3a3f1c49ddf0da765f (patch) | |
| tree | 6b828d92034a3322f9109663be32ff2646009d1f /src/Outputs.h | |
| parent | b65ec3d9d712c23f99f6af6a85aa421a98b4c8a0 (diff) | |
| download | ODR-SourceCompanion-9d6ddfcb36115084237bac3a3f1c49ddf0da765f.tar.gz ODR-SourceCompanion-9d6ddfcb36115084237bac3a3f1c49ddf0da765f.tar.bz2 ODR-SourceCompanion-9d6ddfcb36115084237bac3a3f1c49ddf0da765f.zip | |
Common 6b5db53: Update zmq.hpp, TCPReceiveServer, EDI decoder and output
Diffstat (limited to 'src/Outputs.h')
| -rw-r--r-- | src/Outputs.h | 11 | 
1 files changed, 7 insertions, 4 deletions
| diff --git a/src/Outputs.h b/src/Outputs.h index a419925..857349a 100644 --- a/src/Outputs.h +++ b/src/Outputs.h @@ -27,10 +27,10 @@  #include "common.h"  #include "zmq.hpp"  #include "ClockTAI.h" -#include "edi/TagItems.h" -#include "edi/TagPacket.h" -#include "edi/AFPacket.h" -#include "edi/Transport.h" +#include "edioutput/TagItems.h" +#include "edioutput/TagPacket.h" +#include "edioutput/AFPacket.h" +#include "edioutput/Transport.h"  extern "C" {  #include "encryption.h"  } @@ -138,6 +138,9 @@ class EDI: public Base {          void add_udp_destination(const std::string& host, unsigned int port);          void add_tcp_destination(const std::string& host, unsigned int port); +        // Enables PFT layer and sets FEC +        void set_fec(int fec); +          void set_tist(bool enable, uint32_t delay_ms, const std::chrono::system_clock::time_point& ts);          bool enabled() const; | 
