aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/p7
AgeCommit message (Collapse)AuthorFilesLines
2013-12-08- Forward declaration of register functions.Anders Broman1-0/+3
svn path=/trunk/; revision=53872
2013-10-31Add a data parameter to call_ber_oid_callback to be able to pass data to ↵Michael Mann1-11/+11
subdissectors found with dissector_try_string_new. The intention is to aid in the removal of pinfo->private_data use as well as static global variables in a dissector. For now, all calls to call_ber_oid_callback have the data parameter set to NULL. svn path=/trunk/; revision=52994
2013-09-17Fix remaining dependencides for -exp.cnf files.Jörg Mayer2-2/+9
svn path=/trunk/; revision=52129
2013-07-01Squelch some warnings.Guy Harris1-1/+1
svn path=/trunk/; revision=50286
2013-06-28Remove all global variables in P1 dissector. Bug 8515 ↵Michael Mann2-33/+32
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8515) Added a "subtree context" structure to asn1_ctx_t. This should allow other ASN.1 dissector global variables to be replaced when only used for transferring data between fields in a subtree. svn path=/trunk/; revision=50208
2013-06-14Add parentheses around assignment used as truth value.Jeff Morriss1-26/+26
svn path=/trunk/; revision=49929
2013-06-14Remove check_col() from ASN.1 dissectorsMichael Mann1-10/+4
svn path=/trunk/; revision=49927
2013-05-10Some more protocols can be generated via cmakeJörg Mayer1-0/+40
svn path=/trunk/; revision=49233
2013-04-23Stub cmake support for generating the asn1 dissectors.Jörg Mayer1-0/+23
It doesn't do anything yet, it is just to make svn status readable again. svn path=/trunk/; revision=49007
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45015
2012-06-28Update Free Software Foundation address.Jakub Zawadzki5-5/+5
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2011-10-14Don't generate the conformance file for exported types when building theJeff Morriss1-1/+1
dissector; instead built it only when the separate target (generate_export) is built. Built generate_export when building "all". This prevents the exp_*.cnf files from being regenerated each time another one of the exp_*.cnf files (which the current dissector depends on) has changed (despite the fact that the exported types does not depe Also fix the CLEANFILES definition so it actually cleans things. svn path=/trunk/; revision=39421
2011-10-10Build the ASN.1 dissectors directly into epan/dissectors (rather than buildingJeff Morriss1-13/+9
them and then copying them over). The "all" target to builds these dissectors now (instead of "generate_files" and/or "copy_files"). asn2wrs's "-O" option now means "the dissector goes in this directory" (rather than "all output goes in this directory"); it also means that the "-s" (single output file) option is now required. Fix things up so that it's possible to build all of the ASN.1 dissectors in one shot. Fix building of conformance files when doing out-of-source-tree builds. Unfortunately "make all" in the asn1 directory always builds something--I think because of circular depedencies. svn path=/trunk/; revision=39333
2011-02-22Ensure we always have a valid top_tree for p1.content. This fixes a problemStig Bjørlykke1-0/+14
with other dissectors using p1.content, such as p7. Reset global content_type_id so this will be correct in more cases. This is still not a good solution, because ContentType and Content are generic objects which may occur individual in P7. Indicate when to report invalid content-type. svn path=/trunk/; revision=36025
2011-02-20Renamed x411 to p1, x420 to p22 and s4406 to p772 to be consistentStig Bjørlykke3-55/+55
on the naming policy for X.400 protocols. svn path=/trunk/; revision=36013
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-2/+2
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2010-12-06Make some prefs callback functions static. (These modules don't use ↵Jeff Morriss1-5/+7
proto_reg_handoff_*() as their prefs callback.) svn path=/trunk/; revision=35138
2010-04-07#include <string.h> and/or #include <stdio.h> not needed.Bill Meier1-3/+0
svn path=/trunk/; revision=32417
2010-04-06Try to fix p7 compilation. Changed p7.cnf and regenerated but the generated ↵Anders Broman1-0/+3
dissector shows no difference which should be good. svn path=/trunk/; revision=32408
2009-12-19Regenerate P7 with SIZE constraints checking.Stig Bjørlykke5-7/+88
Added MSUpperBounds.asn. Export upper bounds from X411, rename some duplicate definitions in P7. svn path=/trunk/; revision=31321
2009-10-11Make all proto_* values static.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=30516
2009-10-08Remove unused NEED_PACKET_PROTO_H variableKovarththanan Rajaratnam1-1/+0
svn path=/trunk/; revision=30409
2009-09-24* Prefer col_append_str instead of col_append_fstr for constant stringsKovarththanan Rajaratnam1-6/+2
* Remove check_col guards svn path=/trunk/; revision=30126
2009-06-02Update to:Graeme Lunt2-6/+2
* support the P3 protocol in addition to the P1 protocol; and * reduce the number of changes to the ASN.1 modules (as asn2wrs now handles more of the ASN.1 constructs). P3 is currently only supported over ROS (and not RTSE) svn path=/trunk/; revision=28593
2009-02-07#include <epan/conversation.h> and/or #include <epan/emem.h> not req'd ...Bill Meier1-1/+0
svn path=/trunk/; revision=27390
2008-11-11Small cleanups mostly related to proto_reg_handoffBill Meier1-3/+3
svn path=/trunk/; revision=26750
2008-08-26Get rid of an unused variable in the P7 dissector.Guy Harris1-2/+0
Create a set of warning-clean ASN.1 dissectors and build them with -Werror, to try to prevent errors creeping back in. Put the P7 dissector there. svn path=/trunk/; revision=26090
2008-07-21See if this gets rid of some unused code warnings...Anders Broman1-54/+62
svn path=/trunk/; revision=25782
2008-01-02Additional EXPORTS for X.420 attributes and general fixes.Graeme Lunt3-2/+6
svn path=/trunk/; revision=23980
2007-12-19asn1/*/Makefile.nmake were not part of the source package.Jörg Mayer1-1/+2
Spotted by Tomas Kukosa. svn path=/trunk/; revision=23921
2007-12-10ANSI TCAP regenerated and tested with -T -X asn2wrs optionsTomas Kukosa1-1/+1
asn2wrs has -T (tagged types support) and -X (new BER sttructures) default behavior remove all -T and -X usage svn path=/trunk/; revision=23823
2007-12-03Revised P7 dissector to use #.TABLE directive to generate tables for the ROS ↵Graeme Lunt4-437/+155
dissector from the [ABSTRACT] OPERATIONS definitions in the ASN.1 file. svn path=/trunk/; revision=23707
2007-11-25Changes suggested/provided by Anders so that fewer changes are required to ↵Graeme Lunt7-338/+757
the ASN modules. Also includes the MSAccessProtocol.asn to generate defines for the operation numbers. svn path=/trunk/; revision=23586
2007-11-17Basic P7 (X.400 Message Store Access Protocol) dissection after request from ↵Graeme Lunt8-0/+2794
the list: http://www.wireshark.org/lists/wireshark-dev/200711/msg00228.html Only a single (private) capture file is currently available which contains only a few of the P7 operations, so testing has been minimal. General attribute types, containing information from the X.400 envelope, are also included. svn path=/trunk/; revision=23479