diff options
Diffstat (limited to 'gnuradio-runtime/lib/pdu.cc')
-rw-r--r-- | gnuradio-runtime/lib/pdu.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnuradio-runtime/lib/pdu.cc b/gnuradio-runtime/lib/pdu.cc index f860bf395d..7b75fbac1a 100644 --- a/gnuradio-runtime/lib/pdu.cc +++ b/gnuradio-runtime/lib/pdu.cc @@ -22,8 +22,24 @@ const pmt::pmt_t pdu_num() static const pmt::pmt_t val = pmt::mp("pdu_num"); return val; } +const pmt::pmt_t tx_eob() +{ + static const pmt::pmt_t val = pmt::mp("tx_eob"); + return val; +} +const pmt::pmt_t tx_time() +{ + static const pmt::pmt_t val = pmt::mp("tx_time"); + return val; +} +const pmt::pmt_t tx_sob() +{ + static const pmt::pmt_t val = pmt::mp("tx_sob"); + return val; +} } /* namespace metadata_keys */ + namespace msgport_names { const pmt::pmt_t bpdu() |