diff options
Diffstat (limited to 'gr-vrt/src/vrt_source_32fc.cc')
-rw-r--r-- | gr-vrt/src/vrt_source_32fc.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gr-vrt/src/vrt_source_32fc.cc b/gr-vrt/src/vrt_source_32fc.cc index e44902316..6c3035b8f 100644 --- a/gr-vrt/src/vrt_source_32fc.cc +++ b/gr-vrt/src/vrt_source_32fc.cc @@ -105,6 +105,9 @@ rx_32fc_handler::operator()(const uint32_t *payload, else { // It's most likely an Extension Data or Extension Context packet // (that we don't know how to interpret...) + fprintf(stderr, "\nIF-Extension:\n"); + for (size_t i = 0; i < n32_bit_words; i++) + fprintf(stderr, "%04x: %08x\n", (unsigned int) i, ntohl(payload[i])); return true; } } |