aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/ros
AgeCommit message (Collapse)AuthorFilesLines
2011-11-14[-Wunused-but-set-variable]etxrab1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39829 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-14Don't generate the conformance file for exported types when building themorriss1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39421 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-10Build the ASN.1 dissectors directly into epan/dissectors (rather than buildingmorriss1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39333 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
2010-12-20Rename the routines that handle dissector tables with unsigned integerguy3-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.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35224 f5534014-38df-0310-8fa8-9805f1628bb7
2010-09-08Do not report undecoded message to expert info for ReturnResult without ↵kukosa1-7/+10
result filed git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34076 f5534014-38df-0310-8fa8-9805f1628bb7
2010-06-09Updates to the ROS dissector to support IDMP and fix to IDMP for implicit ↵gal3-8/+24
declaration of return value of call_ros_oid_callback(). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33182 f5534014-38df-0310-8fa8-9805f1628bb7
2010-05-13Use find_or_create_conversation() in some ASN.1 dissectorsmorriss1-13/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32791 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-07#include <string.h> and/or #include <stdio.h> not needed.wmeier1-2/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32417 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-06#include <stdio.h> not needed.wmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32405 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-28Fix gcc -Wshadow warningswmeier1-10/+10
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31714 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-27Remove a check_col() in asn1 template file (SVN #31519 did only the ↵wmeier1-2/+1
generated file). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31697 f5534014-38df-0310-8fa8-9805f1628bb7
2009-10-18Don't se_alloc() the conversation structure which contains pointers to twomorriss1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30601 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-08Remove unused NEED_PACKET_PROTO_H variablekrj1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30409 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-24Expert info for undecoded Q.932 and H.450 operationskukosa3-0/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29534 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-07From Kovarththanan Rajaratnam:stig1-2/+2
More FT_XXX cleanup. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28971 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-02Small typo.gal1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28591 f5534014-38df-0310-8fa8-9805f1628bb7
2009-05-20Added expert info for OID not implemented.stig1-6/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28422 f5534014-38df-0310-8fa8-9805f1628bb7
2008-10-31Fix some "format not a string literal and no format arguments" warnings.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26652 f5534014-38df-0310-8fa8-9805f1628bb7
2008-07-23Get rid of unused code warnings.etxrab1-0/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25809 f5534014-38df-0310-8fa8-9805f1628bb7
2008-04-13Handling of ROS Rejects.gal2-1/+63
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24983 f5534014-38df-0310-8fa8-9805f1628bb7
2007-12-19asn1/*/Makefile.nmake were not part of the source package.jmayer1-0/+1
Spotted by Tomas Kukosa. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23921 f5534014-38df-0310-8fa8-9805f1628bb7
2007-12-10ANSI TCAP regenerated and tested with -T -X asn2wrs optionskukosa1-1/+1
asn2wrs has -T (tagged types support) and -X (new BER sttructures) default behavior remove all -T and -X usage git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23823 f5534014-38df-0310-8fa8-9805f1628bb7
2007-12-03Support table-based dissection of ROS operations.gal4-3/+145
This simplifies the generation of dissectors for ROS-based protocols using the asn2wrs #.TABLE directive. See the P7 dissector for an example. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23706 f5534014-38df-0310-8fa8-9805f1628bb7
2007-11-24Export classes from ROS - hopfully without breaking stuff.etxrab3-5/+10
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23566 f5534014-38df-0310-8fa8-9805f1628bb7
2007-11-13Mark some generated items in ROS.stig1-3/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23441 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-22Update to use the -X and -T flags to asn2wrs.gal1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23241 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-11Remove the remaining autogenereated -exp.cnf filesjmayer1-19/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23148 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-11- Remove -e option if the generated -exp.cnf file isn't used.jmayer1-0/+2
- Add EXPORT_FILES to all files that still contain -e. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23145 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-10- Change Makefiles to include preincjmayer2-1/+3
- Add missing new directories to asn1/Makefile.nmake git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23141 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-10More conversions and updates to existing Makefile stuffjmayer4-57/+104
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23127 f5534014-38df-0310-8fa8-9805f1628bb7
2007-09-24improvements in ROS handling in Q.932 and H.450kukosa4-0/+152
move common ROS code into ros/ros-*.cnf files git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22936 f5534014-38df-0310-8fa8-9805f1628bb7
2007-08-24get_ber_length doesn't need the tree argument, get rid of it.jmayer1-1/+1
Rebuild asn1 dissectors. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22627 f5534014-38df-0310-8fa8-9805f1628bb7
2007-06-11Add some more asn1 modules.etxrab2-0/+258
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22077 f5534014-38df-0310-8fa8-9805f1628bb7
2007-06-06use ASN.1 type names in #.FN_BODY (instead of Wireshark type names)kukosa1-10/+10
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22054 f5534014-38df-0310-8fa8-9805f1628bb7
2007-06-02Check in original asn1, to be referenced.etxrab1-0/+123
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22026 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-13Second step in introducing asn context to BER dissectors just like in PER.etxrab2-22/+25
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21753 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-03EXTERNAL type is handled in asn2wrs nowkukosa1-1/+1
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-1/+1
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-10-29put every python script name into "" so the call won't fail on Win32 native ↵ulfl1-1/+1
python. The problem is the slash in e.g.: @$(PYTHON) ../../tools/make-dissector-reg.py is interpreted as an option instead of being part of the path. I didn't wanted to use backslashes as this might introduce new problems with cygwin's python port. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19730 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-23Ethereal -> Wiresharkkukosa2-1/+10
asn2eth -> asn2wrs git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18214 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-21- asn2eth renamed to asn2wrskukosa2-5/+5
- remove obsolete -X option from makefiles - not generate enumerated map table for BER dissector will be regenerated later git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18199 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-21name changesahlberg2-4/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18197 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-01Operation request/result correlation and timing.gal3-27/+244
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18058 f5534014-38df-0310-8fa8-9805f1628bb7
2006-04-25Add distclean and maintainerclean rules.guy1-0/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17999 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-23Add parsertab.pyc in clean targetetxrab1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17387 f5534014-38df-0310-8fa8-9805f1628bb7