aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dec-bpdu.c
AgeCommit message (Collapse)AuthorFilesLines
2001-01-09Add an additional "protocol index" argument to "{old_}dissector_add()",Guy Harris1-2/+3
"{old_}heur_dissector_add()", "{old_}conv_dissector_add()", and "register_dissector()", so that an entry in those tables has associated with it the protocol index of the protocol the dissector handles (or -1, if there is no protocol index for it). This is for future use in a number of places. (Arguably, "proto_register_protocol()" should take a dissector pointer as an argument, but 1) it'd have to handle both regular and heuristic dissectors; 2) making it take either a "dissector_t" or a union of that and a "heur_dissector_t" introduces some painful header-file interdependencies so I'm punting on that for now. As with other Ethereal internal APIs, these APIs are subject to change in the future, at least until Ethereal 1.0 comes out....) svn path=/trunk/; revision=2849
2001-01-07Update from Paul Ionescu to set the reported length of the tvbuff forGuy Harris1-2/+7
the DEC LanBridge STP packet, so that stuff after the end of the packet gets properly reported as Ethernet trailer data. svn path=/trunk/; revision=2840
2001-01-05Use "%u", not "%d", to print unsigned quantities.Guy Harris1-16/+13
Show the flags in hex, not decimal. Nobody calls the LanBridge BPDU dissector directly through a handle, so there's no need to register it. svn path=/trunk/; revision=2831
2001-01-05DEC LANBridge Spanning Tree Protocol support, from Paul Ionescu.Guy Harris1-0/+166
Put "packet-lapbether.c" into "Makefile.nmake". svn path=/trunk/; revision=2828