summaryrefslogtreecommitdiff
path: root/asn1/ros
AgeCommit message (Collapse)AuthorFilesLines
2013-03-28-Wmissing-prototypesAnders Broman1-0/+3
svn path=/trunk/; revision=48609
2013-03-18From beroset:Anders Broman1-12/+12
remove C++ incompatibilities https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 svn path=/trunk/; revision=48399
2013-02-19How can I get a new tvbuff that starts at an offset within a givenGuy Harris1-1/+1
tvbuff and runs to the end of the tvbuff? Let me count the ways.... Replace a bunch of different ways of doing that (some incorrect, in that they're not properly handling tvbuffs where the captured and reported lengths are different) with tvb_new_subset_remaining(). svn path=/trunk/; revision=47751
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-1/+1
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 Zawadzki5-5/+5
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-01-13Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-1/+0
svn path=/trunk/; revision=40462
2011-11-14[-Wunused-but-set-variable]Anders Broman1-2/+1
svn path=/trunk/; revision=39829
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-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-07-19Use ENC_NA as encoding for FT_PROTOCOL, FT_NONE and FT_BYTES.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=38122
2011-07-19Use correct encoding for proto_tree_add_item().Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=38107
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris3-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-09-08Do not report undecoded message to expert info for ReturnResult without ↵Tomas Kukosa1-7/+10
result filed svn path=/trunk/; revision=34076
2010-06-09Updates to the ROS dissector to support IDMP and fix to IDMP for implicit ↵Graeme Lunt3-8/+24
declaration of return value of call_ros_oid_callback(). svn path=/trunk/; revision=33182
2010-05-13Use find_or_create_conversation() in some ASN.1 dissectorsJeff Morriss1-13/+1
svn path=/trunk/; revision=32791
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-01-28Fix gcc -Wshadow warningsBill Meier1-10/+10
svn path=/trunk/; revision=31714
2010-01-27Remove a check_col() in asn1 template file (SVN #31519 did only the ↵Bill Meier1-2/+1
generated file). svn path=/trunk/; revision=31697
2009-10-18Don't se_alloc() the conversation structure which contains pointers to twoJeff Morriss1-21/+27
g_hash_tables that we then try to free in ros_reinit(). Instead, g_malloc() the conversation structure and free it (along with the hash tables) in the reinit function. svn path=/trunk/; revision=30601
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-08-24Expert info for undecoded Q.932 and H.450 operationsTomas Kukosa3-0/+9
svn path=/trunk/; revision=29534
2009-08-09Don't guard col_clear with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29344
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29340
2009-07-07From Kovarththanan Rajaratnam:Stig Bjørlykke1-2/+2
More FT_XXX cleanup. svn path=/trunk/; revision=28971
2009-06-02Small typo.Graeme Lunt1-1/+1
svn path=/trunk/; revision=28591
2009-05-20Added expert info for OID not implemented.Stig Bjørlykke1-6/+6
svn path=/trunk/; revision=28422
2008-10-31Fix some "format not a string literal and no format arguments" warnings.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=26652
2008-07-23Get rid of unused code warnings.Anders Broman1-0/+4
svn path=/trunk/; revision=25809
2008-04-13Handling of ROS Rejects.Graeme Lunt2-1/+63
svn path=/trunk/; revision=24983
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-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-03Support table-based dissection of ROS operations.Graeme Lunt4-3/+145
This simplifies the generation of dissectors for ROS-based protocols using the asn2wrs #.TABLE directive. See the P7 dissector for an example. svn path=/trunk/; revision=23706
2007-11-24Export classes from ROS - hopfully without breaking stuff.Anders Broman3-5/+10
svn path=/trunk/; revision=23566
2007-11-13Mark some generated items in ROS.Stig Bjørlykke1-3/+7
svn path=/trunk/; revision=23441
2007-10-22Update to use the -X and -T flags to asn2wrs.Graeme Lunt1-1/+1
svn path=/trunk/; revision=23241
2007-10-11Remove the remaining autogenereated -exp.cnf filesJörg Mayer1-19/+0
svn path=/trunk/; revision=23148
2007-10-11- Remove -e option if the generated -exp.cnf file isn't used.Jörg Mayer1-0/+2
- Add EXPORT_FILES to all files that still contain -e. svn path=/trunk/; revision=23145
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-10More conversions and updates to existing Makefile stuffJörg Mayer4-57/+104
svn path=/trunk/; revision=23127
2007-09-24improvements in ROS handling in Q.932 and H.450Tomas Kukosa4-0/+152
move common ROS code into ros/ros-*.cnf files svn path=/trunk/; revision=22936
2007-08-24get_ber_length doesn't need the tree argument, get rid of it.Jörg Mayer1-1/+1
Rebuild asn1 dissectors. svn path=/trunk/; revision=22627
2007-06-11Add some more asn1 modules.Anders Broman2-0/+258
svn path=/trunk/; revision=22077
2007-06-06use ASN.1 type names in #.FN_BODY (instead of Wireshark type names)Tomas Kukosa1-10/+10
svn path=/trunk/; revision=22054
2007-06-02Check in original asn1, to be referenced.Anders Broman1-0/+123
svn path=/trunk/; revision=22026
2007-05-13Second step in introducing asn context to BER dissectors just like in PER.Anders Broman2-22/+25
svn path=/trunk/; revision=21753
2007-05-03EXTERNAL type is handled in asn2wrs nowTomas Kukosa1-1/+1
private implementations were renamed EXTERNAL -> EXTERNALt svn path=/trunk/; revision=21662
2007-03-21change the signature that asn2wrs generates for functions to marm all ↵Ronnie Sahlberg1-1/+1
parameters as _U_ to reduce the number of compiler warnings. update some template and cnf files to use _U_ as well svn path=/trunk/; revision=21088