diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2011-10-27 00:44:35 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-10-27 00:44:35 -0400 |
commit | b903d324bee2627036d024dceed73b3c96558795 (patch) | |
tree | 976d7f5ff6d765faca2e1af86cbcddc9257470ab /include | |
parent | 138c4ae9cfda8fdcf9e137457853b09ef8cf8f77 (diff) |
ipv6: tcp: fix TCLASS value in ACK messages sent from TIME_WAIT
commit 66b13d99d96a (ipv4: tcp: fix TOS value in ACK messages sent from
TIME_WAIT) fixed IPv4 only.
This part is for the IPv6 side, adding a tclass param to ip6_xmit()
We alias tw_tclass and tw_tos, if socket family is INET6.
[ if sockets is ipv4-mapped, only IP_TOS socket option is used to fill
TOS field, TCLASS is not taken into account ]
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/inet_timewait_sock.h | 1 | ||||
-rw-r--r-- | include/net/ipv6.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/net/inet_timewait_sock.h b/include/net/inet_timewait_sock.h index 180231c5bbb..f91a1fb5da7 100644 --- a/include/net/inet_timewait_sock.h +++ b/include/net/inet_timewait_sock.h | |||
@@ -134,6 +134,7 @@ struct inet_timewait_sock { | |||
134 | struct inet_bind_bucket *tw_tb; | 134 | struct inet_bind_bucket *tw_tb; |
135 | struct hlist_node tw_death_node; | 135 | struct hlist_node tw_death_node; |
136 | }; | 136 | }; |
137 | #define tw_tclass tw_tos | ||
137 | 138 | ||
138 | static inline void inet_twsk_add_node_rcu(struct inet_timewait_sock *tw, | 139 | static inline void inet_twsk_add_node_rcu(struct inet_timewait_sock *tw, |
139 | struct hlist_nulls_head *list) | 140 | struct hlist_nulls_head *list) |
diff --git a/include/net/ipv6.h b/include/net/ipv6.h index 3b5ac1fbff3..a366a8a1fe2 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h | |||
@@ -486,7 +486,8 @@ extern int ip6_rcv_finish(struct sk_buff *skb); | |||
486 | extern int ip6_xmit(struct sock *sk, | 486 | extern int ip6_xmit(struct sock *sk, |
487 | struct sk_buff *skb, | 487 | struct sk_buff *skb, |
488 | struct flowi6 *fl6, | 488 | struct flowi6 *fl6, |
489 | struct ipv6_txoptions *opt); | 489 | struct ipv6_txoptions *opt, |
490 | int tclass); | ||
490 | 491 | ||
491 | extern int ip6_nd_hdr(struct sock *sk, | 492 | extern int ip6_nd_hdr(struct sock *sk, |
492 | struct sk_buff *skb, | 493 | struct sk_buff *skb, |