aboutsummaryrefslogtreecommitdiffstats
path: root/packet-mtp3.c
AgeCommit message (Collapse)AuthorFilesLines
2003-09-06Fix a comment.Guy Harris1-2/+2
svn path=/trunk/; revision=8397
2003-09-05Check COL_PROTOCOL, not COL_INFO, before updating COL_PROTOCOL.Guy Harris1-2/+2
svn path=/trunk/; revision=8396
2003-09-05Fix up white space.Guy Harris1-2/+3
svn path=/trunk/; revision=8395
2003-09-05Fixed a bug introduced by my last update and reported for packet-mtp3.cMichael Tüxen1-12/+12
by Anders Broman. svn path=/trunk/; revision=8394
2003-09-04Indicate the Standard (ITU, ANSI, Chin. ITU) in the protocol column.Michael Tüxen1-3/+12
svn path=/trunk/; revision=8370
2003-07-09Fixed a bug reported by Michael Lum regarding the display of the SLSMichael Tüxen1-2/+2
field in ITU MTP 3. svn path=/trunk/; revision=8008
2003-04-19- add better INFO column handling using col_set_fence.Michael Tüxen1-6/+6
- change my e-mail. svn path=/trunk/; revision=7502
2003-04-10From Jeff Morriss: add support for the Chinese ITU variant of SS7.Guy Harris1-15/+61
svn path=/trunk/; revision=7438
2003-01-28Panic if a preference starts with the name of the module to which itGuy Harris1-4/+1
belongs, as that's redundant. Fix a bunch of cases where that was done, and map the old name to the new name. Instead of marking "mtp3.mtp3_standard" as obsolete, map it to "mtp3.standard". svn path=/trunk/; revision=7030
2003-01-02From Jeff Morriss:Guy Harris1-32/+58
make ANSI point codes filterable in MTP3; fix a bug in the ANSI SLS dissection; have MTP3 store the SI for use by subdissectors; add a new MTP3-Management dissector. Fix Makefile.nmake to include the Wellfleet HDLC dissector. svn path=/trunk/; revision=6837
2002-06-20From Jeff Morriss:Guy Harris1-35/+88
- Correct the "standard" preference to be "mtp3.standard" instead of "mtp3.mtp3_standard". - Change ANSI decoding to use 8-bit SLS by default with an option for 5-bit. - Put line breaks in a bunch of places to avoid going past 80 chars. svn path=/trunk/; revision=5716
2002-03-04SCCP support, from Jeff Morriss.Guy Harris1-22/+19
svn path=/trunk/; revision=4866
2002-02-02Small fix from Michael Tuexen.Guy Harris1-2/+2
svn path=/trunk/; revision=4680
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