Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __NET_IPIP_H |
| 2 | #define __NET_IPIP_H 1 |
| 3 | |
| 4 | #include <linux/if_tunnel.h> |
Herbert Xu | c439cb2 | 2008-01-11 19:14:00 -0800 | [diff] [blame] | 5 | #include <net/ip.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | |
| 7 | /* Keep error state on tunnel for 30 sec */ |
| 8 | #define IPTUNNEL_ERR_TIMEO (30*HZ) |
| 9 | |
| 10 | struct ip_tunnel |
| 11 | { |
| 12 | struct ip_tunnel *next; |
| 13 | struct net_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | int err_count; /* Number of arrived ICMP errors */ |
| 16 | unsigned long err_time; /* Time when the last ICMP error arrived */ |
| 17 | |
| 18 | /* These four fields used only by GRE */ |
| 19 | __u32 i_seqno; /* The last seen seqno */ |
| 20 | __u32 o_seqno; /* The last output seqno */ |
| 21 | int hlen; /* Precalculated GRE header length */ |
| 22 | int mlink; |
| 23 | |
| 24 | struct ip_tunnel_parm parms; |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 25 | |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 26 | struct ip_tunnel_prl_entry *prl; /* potential router list */ |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 27 | unsigned int prl_count; /* # of entries in PRL */ |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | struct ip_tunnel_prl_entry |
| 31 | { |
| 32 | struct ip_tunnel_prl_entry *next; |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 33 | __be32 addr; |
| 34 | u16 flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | }; |
| 36 | |
| 37 | #define IPTUNNEL_XMIT() do { \ |
| 38 | int err; \ |
Herbert Xu | 64194c3 | 2008-10-09 12:03:17 -0700 | [diff] [blame] | 39 | int pkt_len = skb->len - skb_transport_offset(skb); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | \ |
| 41 | skb->ip_summed = CHECKSUM_NONE; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | ip_select_ident(iph, &rt->u.dst, NULL); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | \ |
Herbert Xu | c439cb2 | 2008-01-11 19:14:00 -0800 | [diff] [blame] | 44 | err = ip_local_out(skb); \ |
Gerrit Renker | b9df3cb | 2006-11-14 11:21:36 -0200 | [diff] [blame] | 45 | if (net_xmit_eval(err) == 0) { \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | stats->tx_bytes += pkt_len; \ |
| 47 | stats->tx_packets++; \ |
| 48 | } else { \ |
| 49 | stats->tx_errors++; \ |
| 50 | stats->tx_aborted_errors++; \ |
| 51 | } \ |
| 52 | } while (0) |
| 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #endif |