Commit d23f682e authored by Harald Welte's avatar Harald Welte Committed by David S. Miller

[NETFILTER]: Add more debug info to TFTP helper.

From Vineet Mehta <extreme@zayanionline.com>
parent 7ae47691
...@@ -9,5 +9,8 @@ struct tftphdr { ...@@ -9,5 +9,8 @@ struct tftphdr {
#define TFTP_OPCODE_READ 1 #define TFTP_OPCODE_READ 1
#define TFTP_OPCODE_WRITE 2 #define TFTP_OPCODE_WRITE 2
#define TFTP_OPCODE_DATA 3
#define TFTP_OPCODE_ACK 4
#define TFTP_OPCODE_ERROR 5
#endif /* _IP_CT_TFTP */ #endif /* _IP_CT_TFTP */
...@@ -71,6 +71,13 @@ static int tftp_help(struct sk_buff *skb, ...@@ -71,6 +71,13 @@ static int tftp_help(struct sk_buff *skb,
DUMP_TUPLE(&exp.mask); DUMP_TUPLE(&exp.mask);
ip_conntrack_expect_related(ct, &exp); ip_conntrack_expect_related(ct, &exp);
break; break;
case TFTP_OPCODE_DATA:
case TFTP_OPCODE_ACK:
DEBUGP("Data/ACK opcode\n");
break;
case TFTP_OPCODE_ERROR:
DEBUGP("Error opcode\n");
break;
default: default:
DEBUGP("Unknown opcode\n"); DEBUGP("Unknown opcode\n");
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment