aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ascend.c
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1999-10-12 06:21:15 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1999-10-12 06:21:15 +0000
commit64eb24f8447475802bbefa085ad07467bb570898 (patch)
tree13a576cc1a346d2364a1b13bf493b2efc42a856f /packet-ascend.c
parent895c3bcb3e3e2fff087233630eadccb1cb9a7c95 (diff)
New proto_tree header_field_info stuff. Header_field_infos now contain
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@815 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ascend.c')
-rw-r--r--packet-ascend.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/packet-ascend.c b/packet-ascend.c
index 27ab0c851e..d4ef72e512 100644
--- a/packet-ascend.c
+++ b/packet-ascend.c
@@ -1,7 +1,7 @@
/* packet-ascend.c
* Routines for decoding Lucent/Ascend packet traces
*
- * $Id: packet-ascend.c,v 1.4 1999/09/13 03:48:58 gerald Exp $
+ * $Id: packet-ascend.c,v 1.5 1999/10/12 06:20:01 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -110,13 +110,16 @@ proto_register_ascend(void)
{
static hf_register_info hf[] = {
{ &hf_session_id,
- { "Session ID", "ascend.sess", FT_UINT32, NULL }},
+ { "Session ID", "ascend.sess", FT_UINT32, BASE_DEC, NULL, 0x0,
+ "" }},
{ &hf_chunk,
- { "WDD Chunk", "ascend.chunk", FT_UINT32, NULL }},
+ { "WDD Chunk", "ascend.chunk", FT_UINT32, BASE_DEC, NULL, 0x0,
+ "" }},
{ &hf_task,
- { "Task", "ascend.task", FT_UINT32, NULL }}
+ { "Task", "ascend.task", FT_UINT32, BASE_DEC, NULL, 0x0,
+ "" }},
};
proto_ascend = proto_register_protocol("Lucent/Ascend debug output", "ascend");