We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7294fd8 commit e1d33d8Copy full SHA for e1d33d8
print-gre.c
@@ -52,7 +52,6 @@
52
#define GRE_KP 0x2000 /* key present */
53
#define GRE_SP 0x1000 /* sequence# present */
54
#define GRE_sP 0x0800 /* source routing */
55
-#define GRE_RECRS 0x0700 /* recursion count */
56
#define GRE_AP 0x0080 /* acknowledgment# present */
57
58
static const struct tok gre_flag_values[] = {
@@ -61,11 +60,11 @@ static const struct tok gre_flag_values[] = {
61
60
{ GRE_KP, "key present"},
62
{ GRE_SP, "sequence# present"},
63
{ GRE_sP, "source routing present"},
64
- { GRE_RECRS, "recursion count"},
65
{ GRE_AP, "ack present"},
66
{ 0, NULL }
67
};
68
+#define GRE_RECRS_MASK 0x0700 /* recursion count */
69
#define GRE_VERS_MASK 0x0007 /* protocol version */
70
71
/* source route entry types */
0 commit comments