aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/rnsap
AgeCommit message (Collapse)AuthorFilesLines
2013-11-02Require dissector_try_string to pass a data parameter to its subdissectors. ↵Michael Mann1-3/+3
There weren't that many calls, so might as well modify the function than create a need for dissector_try_string_new. svn path=/trunk/; revision=53049
2013-10-31Add a data parameter to call_ber_oid_callback to be able to pass data to ↵Michael Mann1-1/+1
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-18Remove all non-ASCII characters from all .asn files. I didn't see the harm ↵Chris Maynard3-202/+202
in replacing them all as opposed to only those not copied verbatim from other sources. svn path=/trunk/; revision=52132
2013-06-19Add some missing wmem includes that apparently only show up on Windows.Evan Huus1-0/+1
svn path=/trunk/; revision=50071
2013-06-19Apparently one of our major global headers must include emem.h, because I justEvan Huus1-1/+1
found a bunch more asn1 dissectors using emem without ever directly including the header. Convert those to wmem as well, which involves add a number of #include directives since dissectors do *not* automatically pull in the wmem headers. svn path=/trunk/; revision=50066
2013-05-11I added EXPORT_FILES in too many places, remove themJörg Mayer1-4/+0
(via "copy - modify too little - paste" cycle) svn path=/trunk/; revision=49255
2013-05-10Some more protocols can be generated via cmakeJörg Mayer1-0/+35
svn path=/trunk/; revision=49233
2013-05-05Just whitespace changesJörg Mayer1-4/+4
svn path=/trunk/; revision=49167
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-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-12/+12
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-06-28Update Free Software Foundation address.Jakub Zawadzki4-4/+4
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-05-11Make it possible to dissect private IE'sAnders Broman2-0/+14
svn path=/trunk/; revision=42570
2011-10-31Try to fix warnings.Anders Broman1-20/+26
svn path=/trunk/; revision=39690
2011-10-10Build the ASN.1 dissectors directly into epan/dissectors (rather than buildingJeff Morriss1-4/+0
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-09-27Get rid of check_col, while at it set ENC.Anders Broman2-5/+4
svn path=/trunk/; revision=39164
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-3/+3
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-11-17- Update to 3GPP TS 25.413 V9.4.0 (2010-09).Anders Broman7-87/+378
- Fill the value_strings. svn path=/trunk/; revision=34928
2010-11-15Use value_string_ext fcns to access several value_string arrays.Bill Meier1-3/+11
svn path=/trunk/; revision=34894
2010-11-15Use value_string_ext fcns to access a value_string array.Bill Meier1-5/+8
svn path=/trunk/; revision=34883
2010-05-14Update to V9.2.3 (2010-03)Anders Broman7-289/+422
svn path=/trunk/; revision=32814
2010-04-07#include <string.h> and/or #include <stdio.h> not needed.Bill Meier1-2/+0
svn path=/trunk/; revision=32417
2010-04-06#include <stdio.h> not needed.Bill Meier1-1/+0
svn path=/trunk/; revision=32405
2010-02-02Try to get rid of unused code warnings.Anders Broman1-1/+1
svn path=/trunk/; revision=31773
2010-02-02Fix a typo and get rid of some unused code warnings.Anders Broman1-2/+6
svn path=/trunk/; revision=31771
2009-12-22Update to V9.1.0 (2009-12)Anders Broman7-461/+3560
svn path=/trunk/; revision=31353
2009-10-08Remove unused NEED_PACKET_PROTO_H variableKovarththanan Rajaratnam1-1/+0
svn path=/trunk/; revision=30409
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29340
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-04Minor cleanup mostly related to proto_reg_handoffBill Meier1-3/+2
Remove code for unused handles; Localize handles (in proto_reg_handoff) which need not be global; Localize (in proto_reg_handoff) "saved prefs"; Use find_dissector instead of create_dissector_handle as appropriate; Use gboolean for "initialized" flag in proto_reg_handoff. svn path=/trunk/; revision=26693
2008-07-21Fix compile error.Anders Broman1-6/+5
svn path=/trunk/; revision=25780
2008-07-21Update to version 7.9.0Anders Broman7-253/+666
svn path=/trunk/; revision=25779
2008-07-20Fix a warning.Anders Broman1-1/+1
svn path=/trunk/; revision=25775
2007-12-19asn1/*/Makefile.nmake were not part of the source package.Jörg Mayer1-0/+1
Spotted by Tomas Kukosa. svn path=/trunk/; revision=23921
2007-10-10- Change Makefiles to include preincJörg Mayer2-1/+3
- Add missing new directories to asn1/Makefile.nmake svn path=/trunk/; revision=23141
2007-10-10comment out NEED_PACKET_PROTO_H as it is tested now for defining not for valueTomas Kukosa1-1/+1
svn path=/trunk/; revision=23126
2007-09-25Convert acp133 to new build structure.Jörg Mayer1-19/+0
Update some svn:ignore files, remove no longer needed Makefiles svn path=/trunk/; revision=22957
2007-09-25put few simple ASN.1 dissectors into the new makefile structureTomas Kukosa3-38/+99
svn path=/trunk/; revision=22951
2007-09-17Modified some ASN1 Makefiles to compile on unix.Stig Bjørlykke1-3/+5
Added some clean targets. Removed asn1/x501 directory. svn path=/trunk/; revision=22886
2007-08-13NBAP rewritten to use original ASN.1 source and updated to TS 25.433 V7.5.0 ↵Tomas Kukosa1-1/+1
(2007-06) svn path=/trunk/; revision=22490
2007-07-30RNSAP updated to V7.5.0 (2007-06)Tomas Kukosa8-70/+668
svn path=/trunk/; revision=22419
2007-06-04- CLASS definitions support including exports through the *-exp.cnf fileTomas Kukosa1-41/+0
- support of extension in middle of SEQUENCE root elements - new option EMBEDDED_PDV_CB to set default callback - ChoiceValue support at syntax level - ValueSet support at syntax level - exception identifier support - ValueFromObject support at syntax level - next minor changes (to compile X.880 and INAP) - dissectors using classes regenerated svn path=/trunk/; revision=22036
2007-05-30- remove unused hf_rnsap_L3_DL_DCCH_Message_PDU from RANAPTomas Kukosa1-7/+0
- dissectors regenerated with fixed asn2wrs svn path=/trunk/; revision=22004
2007-05-24- RNSAP calls RRC through dissector handle instead of direct function callTomas Kukosa2-6/+36
- PER dissectors regenerated svn path=/trunk/; revision=21919
2007-05-16RNSAP updated to V7.4.0 (2007-03)Tomas Kukosa7-113/+2093
svn path=/trunk/; revision=21803
2007-05-16use some by mistake unused typesTomas Kukosa2-3/+7
remove unused variables and types svn path=/trunk/; revision=21800
2007-05-15get rid of the rest of dummy ASN.1 code and switch()Tomas Kukosa4-435/+131
svn path=/trunk/; revision=21787
2007-05-14packet-rnsap-template.h is not necessaryTomas Kukosa1-38/+0
svn path=/trunk/; revision=21762
2007-05-14- RNSAP regenerated from the last specification Release 6 V6.13.0 (2007-03)Tomas Kukosa12-15708/+14636
(original unchanged ASN.1 source could be used because asn2wrs has been improved) - IE value switch(){} replaced with dissector table (some switch() and dummy CHOICE still remains but will be removed soon) svn path=/trunk/; revision=21761
2007-05-04- Q.932: fix warningsTomas Kukosa3-2/+9
- RNSAP: generate field functions only for necessary types - other dissectors regenerated svn path=/trunk/; revision=21683