Commit de24b4eb authored by Jan Engelhardt's avatar Jan Engelhardt Committed by David S. Miller

[NETFILTER]: nf_{conntrack,nat}_tftp: annotate TFTP helper with const

Signed-off-by: default avatarJan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 13f7d63c
...@@ -24,7 +24,7 @@ static unsigned int help(struct sk_buff *skb, ...@@ -24,7 +24,7 @@ static unsigned int help(struct sk_buff *skb,
enum ip_conntrack_info ctinfo, enum ip_conntrack_info ctinfo,
struct nf_conntrack_expect *exp) struct nf_conntrack_expect *exp)
{ {
struct nf_conn *ct = exp->master; const struct nf_conn *ct = exp->master;
exp->saved_proto.udp.port exp->saved_proto.udp.port
= ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u.udp.port; = ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u.udp.port;
......
...@@ -39,7 +39,8 @@ static int tftp_help(struct sk_buff *skb, ...@@ -39,7 +39,8 @@ static int tftp_help(struct sk_buff *skb,
struct nf_conn *ct, struct nf_conn *ct,
enum ip_conntrack_info ctinfo) enum ip_conntrack_info ctinfo)
{ {
struct tftphdr _tftph, *tfh; const struct tftphdr *tfh;
struct tftphdr _tftph;
struct nf_conntrack_expect *exp; struct nf_conntrack_expect *exp;
struct nf_conntrack_tuple *tuple; struct nf_conntrack_tuple *tuple;
unsigned int ret = NF_ACCEPT; unsigned int ret = NF_ACCEPT;
......
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