aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/x411/packet-x411-template.c
AgeCommit message (Collapse)AuthorFilesLines
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-03-29Get rid of an unused variable.Guy Harris1-1/+0
svn path=/trunk/; revision=17764
2006-03-25Support for P1 Strong AuthenticationGraeme Lunt1-0/+1
svn path=/trunk/; revision=17727
2005-12-06Squelch some compiler const vs. non-const warnings.Guy Harris1-1/+1
svn path=/trunk/; revision=16710
2005-12-02from Stig B:Ronnie Sahlberg1-2/+19
I have made a small change in packet-x411-template.c to make the X. 411 message heading in CDT look like in COTP. svn path=/trunk/; revision=16657
2005-11-23From Stig BjørlykkeAnders Broman1-0/+8
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
2005-11-17"dissect_ber_object_identifier_str" expects a "const char **" as itsGuy Harris1-2/+2
last argument; make it so. svn path=/trunk/; revision=16523
2005-11-16 add a simple g_strlcat define in strutil for gtk==1 where this symbol ↵Ronnie Sahlberg1-0/+1
does not exist svn path=/trunk/; revision=16511
2005-11-16From Graeme Lunt:Anders Broman1-2/+8
Here are a number of small patches for asn1 based dissectors: acse: release request/response column information (many X.400/X.500 unbinds are empty) "standardised" PNAME to "ISO 8650-1 OSI Association Control Service" fix for crash when using EXTERNAL dissector rtse: column information when attempting a resume x509if: generation of LDAP-style DNs from RDNSequences new function x509if_get_last_dn() to get the last DN generated. x509af: DSS parameters certificate extension naming subject naming of certificate x509sat: Guide syntax (as SET now supported) PDU exports. cms: verification of message digest attribute (SHA-1 and MD5) ess: enumerated/restrictive/permissive/informative security categories x411: generation of string encoding of X.400 addresses, trace information and message identifiers. s4406: separate types for primary and copy precedence to allow better filtering (e.g. primary precedence = flash) priority-level-qualifier svn path=/trunk/; revision=16508
2005-11-14move the include of emem.h a bit further downRonnie Sahlberg1-1/+1
so it does know what size_t is when emem is included. i needed this change to get it to compile on my box svn path=/trunk/; revision=16504
2005-11-14 - dissect_ber_object_identifier() returns value as tvbTomas Kukosa1-1/+2
- new dissect_ber_object_identifier_str() function - BER dissectors adapted and regenerated svn path=/trunk/; revision=16501
2005-10-24From Graeme Lunt:Anders Broman1-22/+32
The ftbp.patch file includes: a) A fix to acse.cnf which works around an asn2eth bug (it is the AE-qualifier EXPORT I want, but asn2eth doesn't generate the appropriate extern for the values). Also a small cosmetic change for EXTERNAL decodings. b) New EXPORTs for the FTAM dissector for use in FTBP. c) A fix to asn2eth to solve the problem if you EXPORT types that include a '-' character in the name (e.g. "AE-qualifier" from acse.cnf, "Date-and-Time-Attribute" from ftam.cnf). The problem is that asn2eth generates the "xxxx-exp.cnf" file using the 'C' name (which has replaced '-' with '_') rather than the original 'ASN' name. The fix just undoes the replacement as I couldn't see the original name being preserved anywhere. There still remains a problem if the type has a '.' in the name - but generally I don't think they do. * Better ROS handling and registration * Simplified RTSE registration * X411 column information, extension naming and use of new RTSE/ROS registration * X420 notification extensions, warnings removal and export of ExtensionsField (missed from recent FTBP patch). * Better highlighting of S4406 protocol. svn path=/trunk/; revision=16296
2005-09-05Squelch compiler warnings.Guy Harris1-3/+3
svn path=/trunk/; revision=15697
2005-09-04From Graeme LuntAnders Broman1-0/+203
I attach my RTSE dissector (in tar file) which requires the included ROS dissector, as well as a patch to the latest pres.{cnf,asn}. The ROS dissector uses a new field in the SESSION_DATA_STRUCTURE to pass the ROS operation to the sub-dissector, though this is also set by other dissectors (RTSE uses it in X.410 mode). Note that X.400 P1 in X.410 mode doesn't use ROS, so it is useful not to explicitly include ROS in my X411 dissector. However, the inclusion of a ROS dissector won't effect any dissectors that currently implement their own ROS. I also include dissectors for: X.411 (P1) X.400 OSI Message Transfer Service X.420 (P22) X.400 OSI Information Object STANAG 4406 (P772) STANAG 4406 Military Message Extensions (to P22) These rely on the RTSE and ROS dissectors. svn path=/trunk/; revision=15679