diff options
author | Jaap Keuter <jaap.keuter@xs4all.nl> | 2006-06-22 00:07:46 +0000 |
---|---|---|
committer | Jaap Keuter <jaap.keuter@xs4all.nl> | 2006-06-22 00:07:46 +0000 |
commit | a41dc5d8746fedbca83d48255b4e1357a6a3c93b (patch) | |
tree | 6d7591d36c3bf2f8914af20eb1e77e11b025cb58 /epan/dissectors/packet-asf.c | |
parent | 67f84666c15e66b1a1f8cfe10ec5a82d7408a2f7 (diff) | |
download | wireshark-a41dc5d8746fedbca83d48255b4e1357a6a3c93b.tar.gz wireshark-a41dc5d8746fedbca83d48255b4e1357a6a3c93b.tar.bz2 wireshark-a41dc5d8746fedbca83d48255b4e1357a6a3c93b.zip |
Initial fix for bug 974. It does implement RSP header decoding, it lacks RSP trailer decoding. ASF 2.0 messages added to ASF decoder .
svn path=/trunk/; revision=18539
Diffstat (limited to 'epan/dissectors/packet-asf.c')
-rw-r--r-- | epan/dissectors/packet-asf.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/epan/dissectors/packet-asf.c b/epan/dissectors/packet-asf.c index ec01becd1e..be0b8553c6 100644 --- a/epan/dissectors/packet-asf.c +++ b/epan/dissectors/packet-asf.c @@ -28,7 +28,7 @@ */ #ifdef HAVE_CONFIG_H -# include "config.h" +#include "config.h" #endif #include <glib.h> @@ -36,8 +36,8 @@ /* * See - * * http://www.dmtf.org/standards/standard_alert.php + * http://www.dmtf.org/standards/documents/ASF/DSP0136.pdf */ #define RMCP_CLASS_ASF 0x06 @@ -59,9 +59,16 @@ static const value_string asf_type_vals[] = { { 0x40, "Presence Pong" }, { 0x41, "Capabilities Response" }, { 0x42, "System State Response" }, + { 0x43, "Open Session Response" }, + { 0x44, "Close Session Response" }, { 0x80, "Presence Ping" }, { 0x81, "Capabilities Request" }, { 0x82, "System State Request" }, + { 0x83, "Open Session Request" }, + { 0x84, "Close Session Request" }, + { 0xC0, "RAKP Message 1" }, + { 0xC1, "RAKP Message 2" }, + { 0xC2, "RAKP Message 3" }, { 0x00, NULL } }; |