aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ascend.c
AgeCommit message (Collapse)AuthorFilesLines
2000-02-15Create a header file for every packet-*.c file. Prune the packet.h file.Gilbert Ramirez1-1/+3
This change allows you to add a new packet-*.c file and not cause a recompilation of everything that #include's packet.h Add the plugin_api.[ch] files ot the plugins/Makefile.am packaging list. Add #define YY_NO_UNPUT 1 to the lex source so that the yyunput symbol is not defined, squelching a compiler complaint when compiling the generated C file. svn path=/trunk/; revision=1637
1999-11-16Replace the ETT_ "enum" members, declared in "packet.h", withGuy Harris1-3/+8
dynamically-assigned "ett_" integer values, assigned by "proto_register_subtree_array()"; this: obviates the need to update "packet.h" whenever you add a new subtree type - you only have to add a call to "proto_register_subtree_array()" to a "register" routine and an array of pointers to "ett_", if they're not already there, and add a pointer to the new "ett_" variable to the array, if they are there; would allow run-time-loaded dissectors to allocate subtree types when they're loaded. svn path=/trunk/; revision=1043
1999-10-16- bug fixed with user name displayLaurent Deniel1-16/+20
- more fields added - more proto_tree_add_item_format and proto_tree_add_text replaced svn path=/trunk/; revision=855
1999-10-16- replace proto_tree_add_item_format by proto_tree_add_item.Laurent Deniel1-15/+17
- add new filter fields. If someone has a captured file with this kind of packets, please sent it to me. svn path=/trunk/; revision=852
1999-10-12New proto_tree header_field_info stuff. Header_field_infos now containGilbert Ramirez1-4/+7
the base for numbers to be displayed in, bitmasks for bitfields, and blurbs (which are one or two sentences describing the field). proto_tree_add*() routines now automatically handle bitfields. You tell it which header field you are adding, and just pass it the value of the entire field, and the proto_tree routines will do the masking and shifting for you. This means that bitfields are more naturally filtered via dfilter now. Added Phil Techau's support for signed integers in dfilters/proto_tree. Added the beginning of the SNA dissector. It's not complete, but I'm committing it now because it has example after example of how to use bitfields with the new header_field_info struct and proto_tree routines. It was the impetus to change how header_field_info works. svn path=/trunk/; revision=815
1999-09-13Add support for "wdd" trace output.Gerald Combs1-13/+29
svn path=/trunk/; revision=673
1999-09-11Added Guy's patch to use the pseudo header facility to pass up the AscendGerald Combs1-20/+41
metadata. Also added filter items for the session and task number. svn path=/trunk/; revision=664
1999-09-11Include <string.h> to declare "memmove()".Guy Harris1-1/+2
svn path=/trunk/; revision=658
1999-09-11Oops - forgot to commit the Ascend header decoder..Gerald Combs1-0/+87
svn path=/trunk/; revision=654