diff options
author | Eric Dumazet <edumazet@google.com> | 2015-09-29 17:42:42 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-09-30 02:53:08 +0300 |
commit | f76b33c32b1913dd8909d8509f2726b1661aa6b1 (patch) | |
tree | 6b2d005f324ed9aefdd446e533702d3c1484eba7 /include/net/inet6_connection_sock.h | |
parent | 72ab4a86f7a260d4c2a320b49662da107ce77a81 (diff) | |
download | linux-f76b33c32b1913dd8909d8509f2726b1661aa6b1.tar.xz |
dccp: use inet6_csk_route_req() helper
Before changing dccp_v6_request_recv_sock() sock argument
to const, we need to get rid of security_sk_classify_flow(),
and it seems doable by reusing inet6_csk_route_req() helper.
We need to add a proto parameter to inet6_csk_route_req(),
not assume it is TCP.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/inet6_connection_sock.h')
-rw-r--r-- | include/net/inet6_connection_sock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/inet6_connection_sock.h b/include/net/inet6_connection_sock.h index 81d937e820c4..79b2a4c09ca6 100644 --- a/include/net/inet6_connection_sock.h +++ b/include/net/inet6_connection_sock.h @@ -26,7 +26,7 @@ int inet6_csk_bind_conflict(const struct sock *sk, const struct inet_bind_bucket *tb, bool relax); struct dst_entry *inet6_csk_route_req(const struct sock *sk, struct flowi6 *fl6, - const struct request_sock *req); + const struct request_sock *req, u8 proto); struct request_sock *inet6_csk_search_req(struct sock *sk, const __be16 rport, |