aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/camel
AgeCommit message (Collapse)AuthorFilesLines
2013-09-18Remove all non-ASCII characters from all .asn files. I didn't see the harm ↵Chris Maynard7-95/+95
in replacing them all as opposed to only those not copied verbatim from other sources. svn path=/trunk/; revision=52132
2013-07-03expert_add_info_format_text + proto_tree_add_text = ↵Michael Mann1-12/+6
proto_tree_add_expert_format, where applicable. svn path=/trunk/; revision=50377
2013-06-03Convert ASN.1 dissectors to use filterable expert info.Michael Mann2-3/+17
NOTE: Kerberos ASN.1 template was updated, but not generated to source. svn path=/trunk/; revision=49707
2013-05-07Another set of asn1 protocols can now be generated with cmakeJörg Mayer1-0/+50
svn path=/trunk/; revision=49197
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
2013-03-19From beroset:Anders Broman1-2/+2
remove C++ incompatibilities https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 svn path=/trunk/; revision=48429
2013-03-01Export libwireshark symbols using WS_DLL_PUBLIC defineBalint Reczey1-1/+3
Also remove old WS_VAR_IMPORT define and related Makefile magic everywhere in the project. svn path=/trunk/; revision=47992
2013-01-15Based on http://ask.wireshark.org/questions/17661/tcap-decoding-bug :Jeff Morriss1-2/+2
Register the Camel dissector for SSN 146 instead of (GSM MAP's) SSN 6-9. Looks like the 6-9 list was a carryover from when this dissector was created based on the GSM MAP dissector. svn path=/trunk/; revision=47097
2012-11-29Make all enum_val_t's const.Jeff Morriss1-1/+1
svn path=/trunk/; revision=46292
2012-09-28Revert r21471: previous decoding of APN was matching 3GPP 23.003 chapter 9.1 ↵Pascal Quantin1-1/+16
and the pcap file attached to bug 1543 is not valid svn path=/trunk/; revision=45194
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-3/+3
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-08-22Add French National parameter ↵Anders Broman1-1/+5
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7656 svn path=/trunk/; revision=44612
2012-06-28Update Free Software Foundation address.Jakub Zawadzki5-5/+5
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-05-07Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-4/+4
proto_tree_add_item() calls. svn path=/trunk/; revision=42478
2012-04-04Add a "-build" argument to checkAPIs.pl. Use that argument when buildingJeff Morriss1-1/+1
from makefiles (and thus from the buildbot). The intention is to be able to tell when a human is running the tool so we can provide more code-review guidance. As a starter, enable the "too many proto_tree_add_text() calls" check when a human is running the tool. svn path=/trunk/; revision=41943
2012-03-26In dissect_invokeData(), fixup the default case of the switch statement. ↵Chris Maynard1-33/+35
Fixes 2 instances of Coverity CID 813: UNREACHABLE. svn path=/trunk/; revision=41775
2011-11-02Handle differences in Camel V2Anders Broman4-39/+210
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3911 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6474 svn path=/trunk/; revision=39715
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-34/+34
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-12Update the Camel and MAP ASN.1 files.Anders Broman12-26/+43
svn path=/trunk/; revision=39386
2011-10-10Build the ASN.1 dissectors directly into epan/dissectors (rather than buildingJeff Morriss1-10/+6
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-04-06Add a commentAnders Broman1-0/+15
svn path=/trunk/; revision=36490
2011-04-06Missing decoding for CalledPartyBCD number in CAMELAnders Broman2-0/+14
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5788 svn path=/trunk/; revision=36488
2010-11-12Update Camel to TS 29.078 9.2.0 (2010-06)Anders Broman12-201/+230
svn path=/trunk/; revision=34849
2010-11-07Make the changes from:Anders Broman1-1/+1
Use value_string_ext fcns to access certain value_string arrays; Sort certain value_string arrays so the values are in ascending order; Use val_to_str_ext() instead of for loops to do value_string array lookups (voip_calls.c). Minor whitespace cleanup. In the source files of the as2wrs generated dissectors. svn path=/trunk/; revision=34803
2010-04-06#include <stdio.h> not needed.Bill Meier1-1/+0
svn path=/trunk/; revision=32405
2010-01-26Fix a gcc -Wshadow warningBill Meier1-27/+27
svn path=/trunk/; revision=31684
2010-01-26Remove redundant codeAnders Broman2-114/+1
(the local variable 'opcode' seems to be set but is never used.) svn path=/trunk/; revision=31683
2010-01-17Get rid of check_col();Anders Broman2-17/+11
svn path=/trunk/; revision=31544
2010-01-02Update to V9.0.0 (2009-12)Anders Broman14-36/+34
svn path=/trunk/; revision=31413
2010-01-01Update to V9.0.0 (2009-12)Anders Broman2-2/+2
svn path=/trunk/; revision=31404
2009-10-11Make all proto_* values static.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=30516
2009-10-10gsmmap -> gsm_map to make directory name consistent with filenamesKovarththanan Rajaratnam2-4/+4
svn path=/trunk/; revision=30470
2009-10-08Remove unused NEED_PACKET_PROTO_H variableKovarththanan Rajaratnam1-1/+0
svn path=/trunk/; revision=30409
2009-09-06s/col_add_fstr/col_add_strKovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=29727
2009-09-06Don't pass ep_alloc()'ed strings to col_set_str().Kovarththanan Rajaratnam1-1/+1
Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3984 svn path=/trunk/; revision=29726
2009-08-21Sanitize epan includesKovarththanan Rajaratnam1-3/+3
svn path=/trunk/; revision=29500
2009-08-09Don't guard col_set_str (COL_INFO/COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-3/+1
svn path=/trunk/; revision=29345
2009-06-24From Kovarththanan Rajaratnam:Stig Bjørlykke1-13/+13
More asn1/* header field info cleanup svn path=/trunk/; revision=28826
2009-06-20From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-2/+2
More header_field_info cleanup in the asn1 cnf files. Dissectors will be regenerated later. svn path=/trunk/; revision=28782
2009-03-16Removed some non-ASCII characters.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=27736
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-12-17Fix some typos and spelling (mostly in text strings)Bill Meier1-1/+1
svn path=/trunk/; revision=27037
2008-11-07Minor cleanup related to proto_reg_handoff...Bill Meier1-78/+84
svn path=/trunk/; revision=26728
2008-09-25Add value_string to dissect_q931_cause_ie().Anders Broman1-1/+1
svn path=/trunk/; revision=26267
2008-05-26Fix run checkapi for more targets.Anders Broman1-0/+4
svn path=/trunk/; revision=25380
2008-04-23From Vasil Velichkov:Anders Broman1-0/+24
Fix dissection of Location and Generic Number in CAMEL http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2494 svn path=/trunk/; revision=25149
2008-02-18Fix some some propertiesBill Meier1-1/+1
svn path=/trunk/; revision=24380
2008-01-15Use G_GINT64_CONSTANT(hope it makes the OS X build bot happy).Anders Broman1-3/+3
Unused variables fix to camel. svn path=/trunk/; revision=24106
2008-01-03- MAP-MS-DataTypes.asn Add IdAnders Broman2-36/+40
- Camel fix bug "bug in CAMEL ApplyCharging message." http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1719 - get rid of ber_last_created_item() - add decoding of ServiceInteractionIndicatorsTwo items svn path=/trunk/; revision=23999