aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/tcp.h
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2015-09-29 10:42:47 -0400
committerDavid S. Miller <davem@davemloft.net>2015-09-29 19:53:09 -0400
commitc28c6f045945f53e842467bf0e86c5fac051643d (patch)
tree2e56881da4ad67d27221265d58112fcedf33a71c /include/net/tcp.h
parent54105f98f544ec5305bf1fad292ca454ad55ef67 (diff)
tcp: constify tcp_create_openreq_child() socket argument
This method does not touch the listener socket. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tcp.h')
-rw-r--r--include/net/tcp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h
index 1fe0bd458cb4..85995c1291d0 100644
--- a/include/net/tcp.h
+++ b/include/net/tcp.h
@@ -450,7 +450,7 @@ void tcp_v4_send_check(struct sock *sk, struct sk_buff *skb);
450void tcp_v4_mtu_reduced(struct sock *sk); 450void tcp_v4_mtu_reduced(struct sock *sk);
451void tcp_req_err(struct sock *sk, u32 seq); 451void tcp_req_err(struct sock *sk, u32 seq);
452int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb); 452int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb);
453struct sock *tcp_create_openreq_child(struct sock *sk, 453struct sock *tcp_create_openreq_child(const struct sock *sk,
454 struct request_sock *req, 454 struct request_sock *req,
455 struct sk_buff *skb); 455 struct sk_buff *skb);
456void tcp_ca_openreq_child(struct sock *sk, const struct dst_entry *dst); 456void tcp_ca_openreq_child(struct sock *sk, const struct dst_entry *dst);