Kconfig: remove dangling references to the deleted file
[deliverable/linux.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
75698b17
LC
10extern struct proto rawv6_prot;
11extern struct proto udpv6_prot;
12extern struct proto udplitev6_prot;
13extern struct proto tcpv6_prot;
14extern struct proto pingv6_prot;
1da177e4 15
4c9483b2 16struct flowi6;
1da177e4 17
25985edc 18/* extension headers */
75698b17
LC
19extern int ipv6_exthdrs_init(void);
20extern void ipv6_exthdrs_exit(void);
21extern int ipv6_frag_init(void);
22extern void ipv6_frag_exit(void);
1da177e4
LT
23
24/* transport protocols */
75698b17
LC
25extern int pingv6_init(void);
26extern void pingv6_exit(void);
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);
35
36extern int udpv6_connect(struct sock *sk,
37 struct sockaddr *uaddr,
38 int addr_len);
39
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
17ef66af
LC
52extern void ip6_dgram_sock_seq_show(struct seq_file *seq,
53 struct sock *sp,
54 __u16 srcp,
55 __u16 destp,
56 int bucket);
57
f3a7c66b 58#define LOOPBACK4_IPV6 cpu_to_be32(0x7f000006)
1da177e4
LT
59
60/*
61 * address family specific functions
62 */
3b401a81 63extern const struct inet_connection_sock_af_ops ipv4_specific;
1da177e4 64
7d06b2e0 65extern void inet6_destroy_sock(struct sock *sk);
1da177e4 66
17ef66af
LC
67#define IPV6_SEQ_DGRAM_HEADER \
68 " sl " \
69 "local_address " \
70 "remote_address " \
71 "st tx_queue rx_queue tr tm->when retrnsmt" \
72 " uid timeout inode ref pointer drops\n"
73
1da177e4 74#endif
This page took 1.11803 seconds and 5 git commands to generate.