diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-05-25 15:16:20 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-05-25 15:16:20 +0200 |
commit | 7c5f2676c228b7ad92916bfc6866a1c782284503 (patch) | |
tree | 213124e415c05d5d171875c661fe52a96afa648f /lib/edi/ETIDecoder.cpp | |
parent | 6a9d4b12280f7d0411a44aaad9528d9cbb725b94 (diff) | |
download | dabmod-7c5f2676c228b7ad92916bfc6866a1c782284503.tar.gz dabmod-7c5f2676c228b7ad92916bfc6866a1c782284503.tar.bz2 dabmod-7c5f2676c228b7ad92916bfc6866a1c782284503.zip |
Common ad7e11a: Add seq and pseq information to EDI/ETI decoder
Diffstat (limited to 'lib/edi/ETIDecoder.cpp')
-rw-r--r-- | lib/edi/ETIDecoder.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/edi/ETIDecoder.cpp b/lib/edi/ETIDecoder.cpp index a377692..0a4da54 100644 --- a/lib/edi/ETIDecoder.cpp +++ b/lib/edi/ETIDecoder.cpp @@ -233,6 +233,8 @@ bool ETIDecoder::decode_tagpacket(const std::vector<uint8_t>& value) void ETIDecoder::packet_completed() { + m_received_tagpacket.seq = m_dispatcher.get_seq_info(); + ReceivedTagPacket tp; swap(tp, m_received_tagpacket); m_data_collector.assemble(move(tp)); |