2019-05-27 06:55:01 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2005-12-14 07:15:24 +00:00
|
|
|
/*
|
|
|
|
* NET Generic infrastructure for INET6 connection oriented protocols.
|
|
|
|
*
|
|
|
|
* Authors: Many people, see the TCPv6 sources
|
|
|
|
*
|
|
|
|
* From code originally in TCPv6
|
|
|
|
*/
|
|
|
|
#ifndef _INET6_CONNECTION_SOCK_H
|
|
|
|
#define _INET6_CONNECTION_SOCK_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
struct request_sock;
|
2005-12-14 07:22:54 +00:00
|
|
|
struct sk_buff;
|
|
|
|
struct sock;
|
|
|
|
struct sockaddr;
|
|
|
|
|
2015-09-25 14:39:13 +00:00
|
|
|
struct dst_entry *inet6_csk_route_req(const struct sock *sk, struct flowi6 *fl6,
|
2015-09-29 14:42:42 +00:00
|
|
|
const struct request_sock *req, u8 proto);
|
2010-12-02 18:59:22 +00:00
|
|
|
|
2013-09-21 17:22:41 +00:00
|
|
|
void inet6_csk_addr2sockaddr(struct sock *sk, struct sockaddr *uaddr);
|
2005-12-14 07:22:54 +00:00
|
|
|
|
2014-04-15 16:58:34 +00:00
|
|
|
int inet6_csk_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl);
|
2012-07-16 10:44:56 +00:00
|
|
|
|
2013-09-21 17:22:41 +00:00
|
|
|
struct dst_entry *inet6_csk_update_pmtu(struct sock *sk, u32 mtu);
|
2005-12-14 07:15:24 +00:00
|
|
|
#endif /* _INET6_CONNECTION_SOCK_H */
|