aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-acse.c
AgeCommit message (Collapse)AuthorFilesLines
2012-06-28Update Free Software Foundation address.darkjames1-1/+1
(COPYING will be updated in next commit) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@43536 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-15Update generated ASN1 *.[hc] files after recent work done by Jeff Morriss;wmeier1-1/+1
The only change in each file is in a comment showing the asn2wrs cmd used to build that file. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39427 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-19Use ENC_NA as encoding for FT_PROTOCOL, FT_NONE and FT_BYTES.stig1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38122 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-19Use correct encoding for proto_tree_add_item().stig1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38107 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-13Regenerate ASN.1 dissectors to update the #line directive.stig1-28/+28
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37118 f5534014-38df-0310-8fa8-9805f1628bb7
2010-10-15Added info column descriptions for AARQ and AARE.stig1-8/+20
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34519 f5534014-38df-0310-8fa8-9805f1628bb7
2010-09-23Show Abort source in info column.stig1-4/+18
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34202 f5534014-38df-0310-8fa8-9805f1628bb7
2010-06-09Print correct RLRE reason in Info column.stig1-7/+18
Dump RLRQ/RLRE text in Info column even when having no reason code. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33178 f5534014-38df-0310-8fa8-9805f1628bb7
2010-05-11Add a little more code to avoid not-very-useful blurbs:morriss1-13/+13
- Change spaces in the name to underscores before comparing it to the blurb. - Check if the type simply as T_ prepended to the name. - Don't put in a blurb of "NULL". and regenerate the dissectors. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32748 f5534014-38df-0310-8fa8-9805f1628bb7
2010-05-11Regenerate a few of the ASN.1 dissectorsmorriss1-101/+101
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32742 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-06#include <stdio.h> not needed.wmeier1-6/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32405 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-13Remove redundant calls to check_col() in the .cnf files and regenerate.etxrab1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31523 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-04From gonzalocas:etxrab1-16/+44
GSSE message dissector. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4370 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31442 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-03Corrected type for ACRP-apdu aSO-context-name,stig1-1/+1
which has to be wrong in the ASN.1 spec. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31417 f5534014-38df-0310-8fa8-9805f1628bb7
2009-12-19Regenerate with SIZE constraints checking.stig1-13/+13
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31322 f5534014-38df-0310-8fa8-9805f1628bb7
2009-10-11Make all proto_* values static.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30516 f5534014-38df-0310-8fa8-9805f1628bb7
2009-10-09Regenerate asn1 dissectors (no change, only some line offset changes)krj1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30454 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-09Don't guard col_clear with col_checkkrj1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29344 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkkrj1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29340 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-30Remove more unused variables.gerald1-3/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29249 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-18From Kovarththanan Rajaratnam via bug 3548:stig1-16/+16
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28770 f5534014-38df-0310-8fa8-9805f1628bb7
2009-05-16Regenerate all asn2wrs generated dissectors.stig1-7/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28379 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-09Corrected oid name.stig1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27672 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-07Added an expert info when dissector is not available.stig1-8/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27632 f5534014-38df-0310-8fa8-9805f1628bb7
2009-02-07#include <epan/conversation.h> and/or #include <epan/emem.h> not req'd ...wmeier1-6/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27390 f5534014-38df-0310-8fa8-9805f1628bb7
2008-11-01Regenerate all asn2wrs generated dissectorsetxrab1-6/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26670 f5534014-38df-0310-8fa8-9805f1628bb7
2008-07-22Get rid of some unused code warnings.etxrab1-33/+24
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25791 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-04Get rid of dissect_ber_boolean_value() and change the signature ofetxrab1-1/+1
dissect_ber_boolean() to return a value and update asn2wrs to generate the new signature. Regenerate all BER dissectors. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24015 f5534014-38df-0310-8fa8-9805f1628bb7
2007-11-05Update to use the -X and -T asn2wrs flags.etxrab1-619/+381
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23366 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-31Use oid_add_from_string for adding names.etxrab1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23318 f5534014-38df-0310-8fa8-9805f1628bb7
2007-08-25get users of oid_resolv to use the new oids, rollout packet-snmp.clego1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22651 f5534014-38df-0310-8fa8-9805f1628bb7
2007-07-14Dissection of octet-aligned EXTERNALs.gal1-10/+30
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22308 f5534014-38df-0310-8fa8-9805f1628bb7
2007-06-12Preparations for updated CMIP dissector:etxrab1-13/+13
- Export AE-title from ACSE - Start REAL dissection(unfinished). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22083 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-30- remove unused hf_rnsap_L3_DL_DCCH_Message_PDU from RANAPkukosa1-18/+0
- dissectors regenerated with fixed asn2wrs git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22004 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-22Prepare for the use of the new -X parameter for BER encoded protocols.etxrab1-105/+105
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21889 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-15actx in the rest of dissect_ber..()letxrab1-39/+39
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21773 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-13Second step in introducing asn context to BER dissectors just like in PER.etxrab1-375/+377
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21753 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-06Start introducing actx to ber functions.etxrab1-103/+103
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21705 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-04Show BER internal fields in external type in ACSE, update a comment in ↵etxrab1-10/+9
packet-ber.c. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21685 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-03EXTERNAL type is handled in asn2wrs nowkukosa1-12/+12
private implementations were renamed EXTERNAL -> EXTERNALt git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21662 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-21change the signature that asn2wrs generates for functions to marm all ↵sahlberg1-183/+183
parameters as _U_ to reduce the number of compiler warnings. update some template and cnf files to use _U_ as well git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21088 f5534014-38df-0310-8fa8-9805f1628bb7
2006-08-27An octet string form of the ASO-qualifier used by some systems from the ↵gal1-3/+26
days when it was an ANY. Really just an elaboration of the "...". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19050 f5534014-38df-0310-8fa8-9805f1628bb7
2006-08-16ASN.1 dissectors regenerated with new asn2wrs to get updated field blurbkukosa1-99/+99
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18921 f5534014-38df-0310-8fa8-9805f1628bb7
2006-06-28remove functions register_ber_oid_name() and get_ber_oid_name() from ↵kukosa1-6/+7
packet-ber.c, they were only OID but not BER related use add_oid_str_name() and get_oid_str_name() instead of them git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18595 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-24- remove some #.MODULE_IMPORT from .cng fileskukosa1-17/+17
- regenerate BER dissectors so as to change rest of Ethereal->Wireshark and asn2eth -> asn2wrs git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18217 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-21change a whole bunch of ethereal into wiresharksahlberg1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18196 f5534014-38df-0310-8fa8-9805f1628bb7
2005-12-08Regenerate with the latest asn2eth, to get FT_OID used, and to add #line.guy1-25/+48
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16736 f5534014-38df-0310-8fa8-9805f1628bb7
2005-11-16From Graeme Lunt:etxrab1-8/+30
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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16508 f5534014-38df-0310-8fa8-9805f1628bb7
2005-11-14 - dissect_ber_object_identifier() returns value as tvbkukosa1-17/+12
- new dissect_ber_object_identifier_str() function - BER dissectors adapted and regenerated git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16501 f5534014-38df-0310-8fa8-9805f1628bb7
2005-10-24From Graeme Lunt:etxrab1-4/+4
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16296 f5534014-38df-0310-8fa8-9805f1628bb7