]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/net/transp_v6.h
tg3: remove redundant pm init code
[mirror_ubuntu-bionic-kernel.git] / include / net / transp_v6.h
CommitLineData
1da177e4
LT
1#ifndef _TRANSP_V6_H
2#define _TRANSP_V6_H
3
4#include <net/checksum.h>
5
6/*
7 * IPv6 transport protocols
8 */
9
1da177e4
LT
10extern struct proto rawv6_prot;
11extern struct proto udpv6_prot;
ba4e58ec 12extern struct proto udplitev6_prot;
1da177e4 13extern struct proto tcpv6_prot;
6d0bfe22 14extern struct proto pingv6_prot;
1da177e4 15
4c9483b2 16struct flowi6;
1da177e4 17
25985edc 18/* extension headers */
248b238d
DL
19extern int ipv6_exthdrs_init(void);
20extern void ipv6_exthdrs_exit(void);
853cbbaa
DL
21extern int ipv6_frag_init(void);
22extern void ipv6_frag_exit(void);
1da177e4
LT
23
24/* transport protocols */
6d0bfe22
LC
25extern int pingv6_init(void);
26extern void pingv6_exit(void);
7f4e4868
DL
27extern int rawv6_init(void);
28extern void rawv6_exit(void);
29extern int udpv6_init(void);
30extern void udpv6_exit(void);
31extern int udplitev6_init(void);
32extern void udplitev6_exit(void);
33extern int tcpv6_init(void);
34extern void tcpv6_exit(void);
1da177e4
LT
35
36extern int udpv6_connect(struct sock *sk,
37 struct sockaddr *uaddr,
38 int addr_len);
39
73df66f8
TP
40extern int ip6_datagram_recv_ctl(struct sock *sk,
41 struct msghdr *msg,
42 struct sk_buff *skb);
43
44extern int ip6_datagram_send_ctl(struct net *net,
45 struct sock *sk,
46 struct msghdr *msg,
47 struct flowi6 *fl6,
48 struct ipv6_txoptions *opt,
49 int *hlimit, int *tclass,
50 int *dontfrag);
1da177e4 51
f3a7c66b 52#define LOOPBACK4_IPV6 cpu_to_be32(0x7f000006)
1da177e4
LT
53
54/*
55 * address family specific functions
56 */
3b401a81 57extern const struct inet_connection_sock_af_ops ipv4_specific;
1da177e4 58
7d06b2e0 59extern void inet6_destroy_sock(struct sock *sk);
1da177e4
LT
60
61#endif