Added in tmsi_dumper.cc and tmsi_dumper.h function that processes messages (dump_tmsi(...)).
Registered the input inside of the constructor.
diff --git a/lib/tmsi_dumper_impl.cc b/lib/tmsi_dumper_impl.cc
index 5d825e2..842f3bf 100644
--- a/lib/tmsi_dumper_impl.cc
+++ b/lib/tmsi_dumper_impl.cc
@@ -26,10 +26,27 @@
 
 #include <gnuradio/io_signature.h>
 #include "tmsi_dumper_impl.h"
+#include "grgsm/gsmtap.h"
+#include <stdio.h>
 
 namespace gr {
   namespace gsm {
-
+   
+    void tmsi_dumper_impl::dump_tmsi(pmt::pmt_t msg)
+    {
+        pmt::pmt_t message_plus_header_blob = pmt::cdr(msg);
+        uint8_t * message_plus_header = (uint8_t *)pmt::blob_data(message_plus_header_blob);
+        size_t message_plus_header_len=pmt::blob_length(message_plus_header_blob);
+        
+        gsmtap_hdr * header = (gsmtap_hdr *)message_plus_header;
+        
+        for(int ii=sizeof(gsmtap_hdr); ii<message_plus_header_len; ii++)
+        {
+            printf(" %02x", message_plus_header[ii]);
+        }
+        std::cout << std::endl;
+    }
+    
     tmsi_dumper::sptr
     tmsi_dumper::make()
     {
@@ -44,7 +61,10 @@
       : gr::block("tmsi_dumper",
               gr::io_signature::make(0, 0, 0),
               gr::io_signature::make(0, 0, 0))
-    {}
+    {
+        message_port_register_in(pmt::mp("msgs"));
+        set_msg_handler(pmt::mp("msgs"), boost::bind(&tmsi_dumper_impl::dump_tmsi, this, _1));
+    }
 
     /*
      * Our virtual destructor.
@@ -52,7 +72,6 @@
     tmsi_dumper_impl::~tmsi_dumper_impl()
     {
     }
-
   } /* namespace gsm */
 } /* namespace gr */
 
diff --git a/lib/tmsi_dumper_impl.h b/lib/tmsi_dumper_impl.h
index b559772..759ccac 100644
--- a/lib/tmsi_dumper_impl.h
+++ b/lib/tmsi_dumper_impl.h
@@ -23,7 +23,7 @@
 #ifndef INCLUDED_GSM_TMSI_DUMPER_IMPL_H
 #define INCLUDED_GSM_TMSI_DUMPER_IMPL_H
 
-#include <gsm/tmsi_dumper.h>
+#include <grgsm/misc_utils/tmsi_dumper.h>
 
 namespace gr {
   namespace gsm {
@@ -31,11 +31,12 @@
     class tmsi_dumper_impl : public tmsi_dumper
     {
      private:
-      // Nothing to declare in this block.
+      void dump_tmsi(pmt::pmt_t msg);
 
      public:
       tmsi_dumper_impl();
       ~tmsi_dumper_impl();
+    };
   } // namespace gsm
 } // namespace gr