aboutsummaryrefslogtreecommitdiffstats
path: root/packet-m2pa.c
AgeCommit message (Collapse)AuthorFilesLines
2003-05-04Updated the version 06 of the ID support to version 08. Therefore versionstuexen1-54/+54
02 and 08 are now supported. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7639 f5534014-38df-0310-8fa8-9805f1628bb7
2003-05-04fixed a bug in te handling of the message type field for version 06 of the ID.tuexen1-8/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7638 f5534014-38df-0310-8fa8-9805f1628bb7
2003-05-01From Jeff Morriss: fetch both bytes of the message type in V2 and V6guy1-3/+3
headers. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7629 f5534014-38df-0310-8fa8-9805f1628bb7
2003-04-22- get rid of col_set_fence: it will be called in packet-sctp.c only.tuexen1-11/+4
- replace DATA1 by DATA in packet-m3ua.c (typo) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7529 f5534014-38df-0310-8fa8-9805f1628bb7
2003-04-19- add INFO column stuff using fence.tuexen1-31/+34
- change my e-mail address git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7500 f5534014-38df-0310-8fa8-9805f1628bb7
2003-01-14From Christian Falckenberg: beginnings of a MEGACO dissector.guy1-3/+3
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6926 f5534014-38df-0310-8fa8-9805f1628bb7
2002-11-09Added support for version 2 of the ID, port number can now be selected.tuexen1-114/+276
Based on a patch of Jeff Morriss. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6595 f5534014-38df-0310-8fa8-9805f1628bb7
2002-09-22Fixed a bug in packet-m2pa.c regarding the handling of Acks.tuexen1-14/+18
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6312 f5534014-38df-0310-8fa8-9805f1628bb7
2002-09-20Updated to version 06 of the Internet Draft.tuexen1-5/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6305 f5534014-38df-0310-8fa8-9805f1628bb7
2002-08-28Removed trailing whitespaces from .h and .c files using thejmayer1-9/+9
winapi_cleanup tool written by Patrik Stridvall for the wine project. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6117 f5534014-38df-0310-8fa8-9805f1628bb7
2002-08-27- updated to support draft-ietf-sigtran-m2pa-05.txttuexen1-215/+127
- restructured the code. - fixed some cosmetic bugs. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6101 f5534014-38df-0310-8fa8-9805f1628bb7
2002-06-20From Michael Tuexen: fix SCTP port number for M2PA to be theguy1-2/+2
IANA-assigned number rather than the M2UA number. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5718 f5534014-38df-0310-8fa8-9805f1628bb7
2002-05-18From Michael Tuexen: show the filler only if present.guy1-4/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5505 f5534014-38df-0310-8fa8-9805f1628bb7
2002-04-08From Michael Tuexen:guy1-26/+6
- fix a bug with the LI field - remove some out of date comments - remove some unnecessary #includes git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5128 f5534014-38df-0310-8fa8-9805f1628bb7
2002-03-28From Michael Tuexen: update to draft-ietf-sigtran-m2pa-04.txt.guy1-48/+62
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5037 f5534014-38df-0310-8fa8-9805f1628bb7
2002-01-21Include files from the "epan" directory and subdirectories thereof withguy1-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/"). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4586 f5534014-38df-0310-8fa8-9805f1628bb7
2002-01-20Allow a length of -1 to be specified when adding FT_NONE and FT_PROTOCOLguy1-8/+6
items to the protocol tree; it's interpreted as "the rest of the data in the tvbuff". This can be used if 1) the item covers the entire packet or the remaining payload in the packet or 2) the item's length won't be known until it's dissected, and will be then set with "proto_item_set_len()" - if an exception is thrown in the dissection, it means the item ran *past* the end of the tvbuff, so saying it runs to the end of the tvbuff is reasonable. Convert a number of "proto_tree_add_XXX()" calls using "tvb_length_remaining()", values derived from the result of "tvb_length()", or 0 (in the case of items whose length is unknown) to use -1 instead (using 0 means that if an exception is thrown, selecting the item highlights nothing; using -1 means it highlights all the data for that item that's available). In some places where "tvb_length()" or "tvb_length_remaining()" was used to determine how large a packet is, use "tvb_reported_length()" or "tvb_reported_length_remaining()", instead - the first two calls indicate how much captured data was in the packet, the latter two calls indicate how large the packet actually was (and the fact that using the latter could cause BoundsError exceptions to be thrown is a feature - if such an exception is thrown, the frame really *was* short, and it should be tagged as such). Replace some "proto_tree_add_XXX()" calls with equivalent "proto_tree_add_item()" calls. Fix some indentation. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4578 f5534014-38df-0310-8fa8-9805f1628bb7
2001-12-10Move the pointer to the "column_info" structure in the "frame_data"guy1-6/+6
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4370 f5534014-38df-0310-8fa8-9805f1628bb7
2001-12-03Update of M2PA support to draft 3, from Michael Tuexen.guy1-190/+183
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4316 f5534014-38df-0310-8fa8-9805f1628bb7
2001-12-03Make "dissector_add()", "dissector_delete()", and "dissector_change()"guy1-4/+6
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4308 f5534014-38df-0310-8fa8-9805f1628bb7
2001-06-21M2PA support, from Jeff Morriss.guy1-0/+402
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3596 f5534014-38df-0310-8fa8-9805f1628bb7