Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
3a5ad2ee
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
3a5ad2ee
编写于
7月 12, 2012
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ipv6: Add ip6_redirect() and ip6_sk_redirect() helper functions.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
6e157b6a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
29 addition
and
0 deletion
+29
-0
include/net/ip6_route.h
include/net/ip6_route.h
+2
-0
net/ipv6/route.c
net/ipv6/route.c
+27
-0
未找到文件。
include/net/ip6_route.h
浏览文件 @
3a5ad2ee
...
...
@@ -139,6 +139,8 @@ extern void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
int
oif
,
u32
mark
);
extern
void
ip6_sk_update_pmtu
(
struct
sk_buff
*
skb
,
struct
sock
*
sk
,
__be32
mtu
);
extern
void
ip6_redirect
(
struct
sk_buff
*
skb
,
struct
net
*
net
,
int
oif
,
u32
mark
);
extern
void
ip6_sk_redirect
(
struct
sk_buff
*
skb
,
struct
sock
*
sk
);
struct
netlink_callback
;
...
...
net/ipv6/route.c
浏览文件 @
3a5ad2ee
...
...
@@ -1114,6 +1114,33 @@ void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
}
EXPORT_SYMBOL_GPL
(
ip6_sk_update_pmtu
);
void
ip6_redirect
(
struct
sk_buff
*
skb
,
struct
net
*
net
,
int
oif
,
u32
mark
)
{
const
struct
ipv6hdr
*
iph
=
(
struct
ipv6hdr
*
)
skb
->
data
;
struct
dst_entry
*
dst
;
struct
flowi6
fl6
;
memset
(
&
fl6
,
0
,
sizeof
(
fl6
));
fl6
.
flowi6_oif
=
oif
;
fl6
.
flowi6_mark
=
mark
;
fl6
.
flowi6_flags
=
0
;
fl6
.
daddr
=
iph
->
daddr
;
fl6
.
saddr
=
iph
->
saddr
;
fl6
.
flowlabel
=
(
*
(
__be32
*
)
iph
)
&
IPV6_FLOWINFO_MASK
;
dst
=
ip6_route_output
(
net
,
NULL
,
&
fl6
);
if
(
!
dst
->
error
)
rt6_do_redirect
(
dst
,
skb
);
dst_release
(
dst
);
}
EXPORT_SYMBOL_GPL
(
ip6_redirect
);
void
ip6_sk_redirect
(
struct
sk_buff
*
skb
,
struct
sock
*
sk
)
{
ip6_redirect
(
skb
,
sock_net
(
sk
),
sk
->
sk_bound_dev_if
,
sk
->
sk_mark
);
}
EXPORT_SYMBOL_GPL
(
ip6_sk_redirect
);
static
unsigned
int
ip6_default_advmss
(
const
struct
dst_entry
*
dst
)
{
struct
net_device
*
dev
=
dst
->
dev
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录