aboutsummaryrefslogtreecommitdiffstats
path: root/packet-sua.c
AgeCommit message (Collapse)AuthorFilesLines
2003-10-06From packet steve: get rid of some duplicate field definitions (someGuy Harris1-2/+1
aren't exactly duplicates, but they both set the same hf_ variable). svn path=/trunk/; revision=8621
2003-09-04- Fixed a bug regaring DRST messages.Michael Tüxen1-3/+5
- Updates for version 15 of the ID. svn path=/trunk/; revision=8369
2003-09-02Fixed a typo.Michael Tüxen1-2/+2
svn path=/trunk/; revision=8331
2003-08-08From Niels Koot: fix to SUA subdissection code:Guy Harris1-116/+210
do subdissection even if no protocol tree is being built; don't put subdissection data in global variables. svn path=/trunk/; revision=8152
2003-06-03- fixed a BUG in the handling of the global title address parameterMichael Tüxen1-7/+65
- added support of subdissectors. Patch provided by Niels.Koot@logicacmg.com svn path=/trunk/; revision=7773
2003-04-22- get rid of col_set_fence: it will be called in packet-sctp.c only.Michael Tüxen1-4/+2
- replace DATA1 by DATA in packet-m3ua.c (typo) svn path=/trunk/; revision=7529
2003-04-19- add INFO column stuff using fence.Michael Tüxen1-4/+4
- change my e-mail address svn path=/trunk/; revision=7500
2003-01-23Register "sua.sua_version" as an obsolete preference, so that noGuy Harris1-2/+5
complaints are issued if a preferences file from an earlier version of Ethereal is read. svn path=/trunk/; revision=6991
2003-01-22Updated to supportMichael Tüxen1-1837/+691
http://www.ietf.org/internet-drafts/draft-ietf-sigtran-sua-14.txt svn path=/trunk/; revision=6979
2003-01-14From Christian Falckenberg: beginnings of a MEGACO dissector.Guy Harris1-4/+4
Move SCTP payload protocol IDs to a header file, and get the PPIDs from that header file rather than defining them in dissectors running atop SCTP. Use both the old(?) and official PPID for ASAP. svn path=/trunk/; revision=6926
2002-12-02Don't cast away constness, and fix variable and structure memberGuy Harris1-6/+6
qualifiers as necessary to ensure that we don't have to. "strcmp()", "strcasecmp()", and "memcmp()" don't return booleans; don't test their results as if they did. Use "guint8", not "guchar", for a pointer to (one or more) 8-bit bytes. Update Michael Tuexen's e-mail address. svn path=/trunk/; revision=6726
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-354/+354
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6117
2002-08-02Replace the types from sys/types.h and netinet/in.h by their glib.hJörg Mayer1-9/+1
equivalents for the toplevel directory. The removal of winsock2.h will hopefully not cause any problems under MSVC++, as those files using struct timeval still include wtap.h, which still includes winsock2.h. svn path=/trunk/; revision=5932
2002-07-17From Joerg Mayer:Guy Harris1-5/+1
dftest.c: Remove #if-0-ed includes packet-ieee80211.c, packet-wtls.c, packet-afp.c, packet-wsp.c, packet-wtp.c, ethereal_gen.py: Remove redundant include varargs (already in snprintf.h, and required only for snprintf.h) Remove unused include of snprintf.h from files not using "snprintf()". svn path=/trunk/; revision=5889
2002-05-30From Albert Chin: fix various non-GCC compiler warnings.Guy Harris1-2/+2
svn path=/trunk/; revision=5600
2002-01-24Replace a bunch of "tvb_length()" and "tvb_length_remaining()" calls inGuy Harris1-5/+5
arguments to "proto_tree_add_text()", and to "proto_tree_add_XXX()" calls that add FT_NONE or FT_PROTO items to the protocol tree, with -1. Replace some calls to "tvb_length()" or "tvb_length_remaining()" with calls to "tvb_reported_length()" and "tvb_reported_length_remaining()", as those give the actual length of the data in the packet, not just the data that happened to be captured. svn path=/trunk/; revision=4605
2002-01-21Include files from the "epan" directory and subdirectories thereof withGuy Harris1-2/+2
"epan/..." pathnames, so as to avoid collisions with header files in any of the directories in which we look (e.g., "proto.h", as some other package has its own "proto.h" file which it installs in the top-level include directory). Don't add "-I" flags to search "epan", as that's no longer necessary (and we want includes of "epan" headers to fail if the "epan/" is left out, so that we don't re-introduce includes lacking "epan/"). svn path=/trunk/; revision=4586
2001-12-10Move the pointer to the "column_info" structure in the "frame_data"Guy Harris1-11/+11
structure to the "packet_info" structure; only stuff that's permanently stored with each frame should be in the "frame_data" structure, and the "column_info" structure is not guaranteed to hold the column values for that frame at all times - it was only in the "frame_data" structure so that it could be passed to dissectors, and, as all dissectors are now passed a pointer to a "packet_info" structure, it could just as well be put in the "packet_info" structure. That saves memory, by shrinking the "frame_data" structure (there's one of those per frame), and also lets us clean up the code a bit. svn path=/trunk/; revision=4370
2001-12-08Attach a descriptive name field type and base to dissector tables; thatGuy Harris1-2/+4
specifies how the selector values used as keys in those tables are to be displayed, and the title to use when displaying the table. Use that information in the code to display the initial and current entries of various dissector tables. Have the dissector for BACnet APDUs register itself by name, and have the BACnet NPDU dissector call it iff the BAC_CONTROL_NET bit isn't set, rather than doing it with a dissector table. svn path=/trunk/; revision=4358
2001-12-03Make "dissector_add()", "dissector_delete()", and "dissector_change()"Guy Harris1-4/+7
take a dissector handle as an argument, rather than a pointer to a dissector function and a protocol ID. Associate dissector handles with dissector table entries. svn path=/trunk/; revision=4308
2001-11-04SUA dissector, from Michael Tuexen, replacing (and subsuming) the SUAGuy Harris1-0/+2762
Light dissector. svn path=/trunk/; revision=4156