~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to include/net/transp_v6.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 *      IPv6 transport protocols
8
8
 */
9
9
 
10
 
#ifdef __KERNEL__
11
 
 
12
10
extern struct proto rawv6_prot;
13
11
extern struct proto udpv6_prot;
14
12
extern struct proto udplitev6_prot;
15
13
extern struct proto tcpv6_prot;
16
14
 
17
 
struct flowi;
 
15
struct flowi6;
18
16
 
19
 
/* extention headers */
 
17
/* extension headers */
20
18
extern int                              ipv6_exthdrs_init(void);
21
19
extern void                             ipv6_exthdrs_exit(void);
22
20
extern int                              ipv6_frag_init(void);
42
40
 
43
41
extern int                      datagram_send_ctl(struct net *net,
44
42
                                                  struct msghdr *msg,
45
 
                                                  struct flowi *fl,
 
43
                                                  struct flowi6 *fl6,
46
44
                                                  struct ipv6_txoptions *opt,
47
45
                                                  int *hlimit, int *tclass,
48
46
                                                  int *dontfrag);
57
55
extern void inet6_destroy_sock(struct sock *sk);
58
56
 
59
57
#endif
60
 
 
61
 
#endif