aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pppoe.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2008-07-18 19:31:01 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2008-07-18 19:31:01 +0000
commitd463253cc22fb6fe9326699b63c4548f83c3218c (patch)
treeb72f365d4e721b7bd2a09f2684c3e1c9134fa687 /epan/dissectors/packet-pppoe.c
parent86e10880c98d4e11f8eb055116fdd3abb3fef430 (diff)
From Edward J. Paradise:
The #defines for PADG, PADC, and PADQ are incorrect and these packets are showing up as unknown. I would be happy to fix this bug as I would like to enhance the current support for rfc4938 and rfc4938bis to include filtering and inband credit grant decoding. svn path=/trunk/; revision=25766
Diffstat (limited to 'epan/dissectors/packet-pppoe.c')
-rw-r--r--epan/dissectors/packet-pppoe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-pppoe.c b/epan/dissectors/packet-pppoe.c
index 4812640ebc..243668b20c 100644
--- a/epan/dissectors/packet-pppoe.c
+++ b/epan/dissectors/packet-pppoe.c
@@ -91,9 +91,9 @@ static gboolean global_pppoe_show_tags_and_lengths = FALSE;
#define PPPOE_CODE_SESSION 0x00
#define PPPOE_CODE_PADO 0x07
#define PPPOE_CODE_PADI 0x09
-#define PPPOE_CODE_PADG 0x10
-#define PPPOE_CODE_PADC 0x11
-#define PPPOE_CODE_PADQ 0x12
+#define PPPOE_CODE_PADG 0x0a
+#define PPPOE_CODE_PADC 0x0b
+#define PPPOE_CODE_PADQ 0x0c
#define PPPOE_CODE_PADR 0x19
#define PPPOE_CODE_PADS 0x65
#define PPPOE_CODE_PADT 0xa7