Blame view

include/net/inet6_connection_sock.h 1.08 KB
8129765ac   Arnaldo Carvalho de Melo   [IPV6]: Generalis...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  /*
   * NET		Generic infrastructure for INET6 connection oriented protocols.
   *
   * Authors:	Many people, see the TCPv6 sources
   *
   * 		From code originally in TCPv6
   *
   *		This program is free software; you can redistribute it and/or
   *		modify it under the terms of the GNU General Public License
   *		as published by the Free Software Foundation; either version
   *		2 of the License, or (at your option) any later version.
   */
  #ifndef _INET6_CONNECTION_SOCK_H
  #define _INET6_CONNECTION_SOCK_H
  
  #include <linux/types.h>
b9750ce13   Arnaldo Carvalho de Melo   [IPV6]: Generalis...
17
  struct inet_bind_bucket;
8129765ac   Arnaldo Carvalho de Melo   [IPV6]: Generalis...
18
  struct request_sock;
b9750ce13   Arnaldo Carvalho de Melo   [IPV6]: Generalis...
19
20
21
  struct sk_buff;
  struct sock;
  struct sockaddr;
1fd511553   Joe Perches   inet*.h: Remove e...
22
23
  int inet6_csk_bind_conflict(const struct sock *sk,
  			    const struct inet_bind_bucket *tb, bool relax);
8129765ac   Arnaldo Carvalho de Melo   [IPV6]: Generalis...
24

30d50c61d   Eric Dumazet   ipv6: constify in...
25
  struct dst_entry *inet6_csk_route_req(const struct sock *sk, struct flowi6 *fl6,
f76b33c32   Eric Dumazet   dccp: use inet6_c...
26
  				      const struct request_sock *req, u8 proto);
ae4694b2d   David S. Miller   ipv6: Create inet...
27

1fd511553   Joe Perches   inet*.h: Remove e...
28
  void inet6_csk_addr2sockaddr(struct sock *sk, struct sockaddr *uaddr);
b9750ce13   Arnaldo Carvalho de Melo   [IPV6]: Generalis...
29

b0270e910   Eric Dumazet   ipv4: add a sock ...
30
  int inet6_csk_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl);
35ad9b9cf   David S. Miller   ipv6: Add helper ...
31

1fd511553   Joe Perches   inet*.h: Remove e...
32
  struct dst_entry *inet6_csk_update_pmtu(struct sock *sk, u32 mtu);
8129765ac   Arnaldo Carvalho de Melo   [IPV6]: Generalis...
33
  #endif /* _INET6_CONNECTION_SOCK_H */