Kaynağa Gözat

tree changes in tc_tm_dissector and hm_dissector

priyadharsan 4 ay önce
ebeveyn
işleme
c0ed8d0f74
2 değiştirilmiş dosya ile 5 ekleme ve 5 silme
  1. 2 2
      Dissector/hm_dissector.lua
  2. 3 3
      Dissector/tc_tm_protocols.lua

+ 2 - 2
Dissector/hm_dissector.lua

@@ -70,10 +70,10 @@ TC_TM_PROTOCOL.fields = { f_sub_mod_id, f_Queue_id, f_num_of_instance, f_Health_
      len = len - 4
      if submodule_id == 0  then
      	require("eps_dissector")
-      	dissect_power_system_data(buffer, pinfo, tree, TC_TM_PROTOCOL, offset, tm_len, num_of_instance)
+      	dissect_power_system_data(buffer, pinfo, subtree1, TC_TM_PROTOCOL, offset, tm_len, num_of_instance)
      elseif submodule_id == 3  then
         require("uhf_dissector")
-      UHF_DISSECTOR(buffer, pinfo, tree, TC_TM_PROTOCOL, offset, tm_len, num_of_instance)
+      UHF_DISSECTOR(buffer, pinfo, subtree1, TC_TM_PROTOCOL, offset, tm_len, num_of_instance)
      elseif submodule_id == 5 then
         require("obc_dissector")
         obc_dissector(buffer, pinfo, subtree1, TC_TM_PROTOCOL, offset, num_of_instance)     

+ 3 - 3
Dissector/tc_tm_protocols.lua

@@ -234,7 +234,7 @@ end
               
                  require("hm_dissector")
 
-                data = HM_TC_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, offset)
+                data = HM_TC_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset)
                 offset = offset + tc_len   
               else
 	              for i=0,tc_len - 1 do
@@ -436,12 +436,12 @@ function TM_dissector(buffer, pinfo, tree)  -- OBC to GS
       if tm_id == 621 or  tm_id == 815 then
       			if tm_id == 621  then
       				require("hm_dissector")
-        			array = HM_TM_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, add, tm_len)
+        			array = HM_TM_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add, tm_len)
         			add = add + tm_len
 			      end
  			      if tm_id == 815  then
  				      require("bcon")
-        			bcon_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, add, tm_len)
+        			bcon_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add, tm_len)
         			add = add + tm_len
 			      end      
       else