From Stig Bjørlykke

Added a new dissector for CDT (CompressedDataType) as
 defined in STANAG 4406 Annex E.  This dissector is used in P_Mul to  
 decode encapsulated X.411 content.  I have added a function in the  
 X.411 dissector to decode a MTS APDU without having a ROS

 Changes in this patch:
 * Added CDT dissector
 * Use CDT dissector in P_Mul
 * Added function to decode MTS APDU in the X.411 dissector

svn path=/trunk/; revision=16565
This commit is contained in:
Anders Broman 2005-11-23 07:29:45 +00:00
parent 704e126253
commit 59a7f595b4
2 changed files with 9 additions and 0 deletions

View File

@ -94,6 +94,14 @@ call_x411_oid_callback(char *base_oid, tvbuff_t *tvb, int offset, packet_info *p
}
/*
* Dissect X411 MTS APDU
*/
int dissect_x411_mts_apdu (tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
{
return dissect_x411_MTS_APDU (FALSE, tvb, 0, pinfo, parent_tree, hf_x411_MTS_APDU_PDU);
}
/*
* Dissect X411 PDUs inside a PPDU.
*/

View File

@ -26,6 +26,7 @@
#ifndef PACKET_X411_H
#define PACKET_X411_H
int dissect_x411_mts_apdu (tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree);
#include "packet-x411-exp.h"
#endif /* PACKET_X411_H */