aboutsummaryrefslogtreecommitdiffstats
path: root/packet-mtp3.c
AgeCommit message (Collapse)AuthorFilesLines
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-11Update mtp3 dissector. Add mtp2 dissector.Gilbert Ramirez1-216/+153
From ichael Tuexen <Michael.Tuexen@micmac.franken.de> svn path=/trunk/; revision=4382
2001-12-10Move the pointer to the "column_info" structure in the "frame_data"Guy Harris1-5/+5
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/+3
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-07-07Support for ANSI flavor of MTP3, from Jeff Morriss.Guy Harris1-80/+242
svn path=/trunk/; revision=3659
2001-06-18From Joerg Mayer: explicitly fill in all members of aGuy Harris1-7/+7
"header_field_info" structure, including the ones that are later set by the routines to register fields. svn path=/trunk/; revision=3561
2001-05-31Make the "short name" of MTP Level 3 just "MTP3", matching what we putGuy Harris1-2/+2
in the Protocol column, and make the "filter name" "mtp3", as filter names are supposed to be all-lower-case. svn path=/trunk/; revision=3490
2001-05-25Fix Gerald's e-mail address.Guy Harris1-2/+2
svn path=/trunk/; revision=3451
2001-05-24MTP3 support, from Michael Tuexen.Guy Harris1-0/+277
svn path=/trunk/; revision=3444