aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ipmi.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2006-01-05 08:52:06 +0000
committerJörg Mayer <jmayer@loplof.de>2006-01-05 08:52:06 +0000
commit30adb1d8f7b60b0ad793c53a15fcd2021061d6c9 (patch)
tree859ed03ff54ed12f4b72c275395da86ce5eeb93b /epan/dissectors/packet-ipmi.c
parent3f8354909c4cd322b3bd0b704910cdaba199a615 (diff)
Fix for http://bugs.ethereal.com/bugzilla/show_bug.cgi?id=656
Incorrect decoding of IPMI System Software IDs svn path=/trunk/; revision=16950
Diffstat (limited to 'epan/dissectors/packet-ipmi.c')
-rw-r--r--epan/dissectors/packet-ipmi.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ipmi.c b/epan/dissectors/packet-ipmi.c
index b16d37fa4b..cdd985c51d 100644
--- a/epan/dissectors/packet-ipmi.c
+++ b/epan/dissectors/packet-ipmi.c
@@ -527,7 +527,13 @@ static const value_string ipmi_ccode_vals[] = {
static const value_string ipmi_addr_vals[] = {
{ 0x20, "BMC Slave Address" },
- { 0x81, "Remote Console Software ID" },
+ { 0x81, "Remote Console Software 1" },
+ { 0x83, "Remote Console Software 2" },
+ { 0x85, "Remote Console Software 3" },
+ { 0x87, "Remote Console Software 4" },
+ { 0x89, "Remote Console Software 5" },
+ { 0x8b, "Remote Console Software 6" },
+ { 0x8d, "Remote Console Software 7" },
{ 0x00, NULL },
};