omit sequence hby e2e from metadata
authorEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Wed, 15 Apr 2015 14:21:26 +0000 (16:21 +0200)
committerEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Wed, 15 Apr 2015 14:21:26 +0000 (16:21 +0200)
example/diameter/launcher/resources/pcap2diameterHex.sh

index a318974..355b70f 100755 (executable)
@@ -146,7 +146,17 @@ for frame in ${all_frames[@]}; do
   # To decimal:
   hbh=$(printf "%d\n" $hbh)
   e2e=$(printf "%d\n" $e2e)
-  echo -e "timestamp=$ts\ndate=$date\nsrc=$src\ndst=$dst\ncode=$code\nisrequest=$isreq\napplicationid=$appid\nhbh.e2e=${hbh}.${e2e}" > $RESULTS_DIR/$frame.metadata
+  echo "date=$date" > $RESULTS_DIR/$frame.metadata
+  echo "timestamp=$ts" >> $RESULTS_DIR/$frame.metadata
+  echo "src=$src" >> $RESULTS_DIR/$frame.metadata
+  echo "dst=$dst" >> $RESULTS_DIR/$frame.metadata
+  echo "code=$code" >> $RESULTS_DIR/$frame.metadata
+  echo "isrequest=$isreq" >> $RESULTS_DIR/$frame.metadata
+  echo "applicationid=$appid" >> $RESULTS_DIR/$frame.metadata
+  #echo "sequence=${hbh}.${e2e}" >> $RESULTS_DIR/$frame.metadata
+#  echo "hopbyhop=$hbh" >> $RESULTS_DIR/$frame.metadata
+#  echo "endtoend=$e2e" >> $RESULTS_DIR/$frame.metadata
+
   echo " and $RESULTS_DIR/$frame.metadata"
 done