Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
88799fe5
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
88799fe5
编写于
10月 24, 2007
作者:
V
Vlad Yasevich
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
SCTP: Correctly disable ADD-IP when AUTH is not supported.
Signed-off-by:
N
Vlad Yasevich
<
vladislav.yasevich@hp.com
>
上级
0ed90fb0
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
4 addition
and
4 deletion
+4
-4
include/net/sctp/structs.h
include/net/sctp/structs.h
+0
-1
net/sctp/associola.c
net/sctp/associola.c
+1
-1
net/sctp/sm_make_chunk.c
net/sctp/sm_make_chunk.c
+3
-2
未找到文件。
include/net/sctp/structs.h
浏览文件 @
88799fe5
...
...
@@ -1540,7 +1540,6 @@ struct sctp_association {
__u8
asconf_capable
;
/* Does peer support ADDIP? */
__u8
prsctp_capable
;
/* Can peer do PR-SCTP? */
__u8
auth_capable
;
/* Is peer doing SCTP-AUTH? */
__u8
addip_capable
;
/* Can peer do ADD-IP */
__u32
adaptation_ind
;
/* Adaptation Code point. */
...
...
net/sctp/associola.c
浏览文件 @
88799fe5
...
...
@@ -265,7 +265,7 @@ static struct sctp_association *sctp_association_init(struct sctp_association *a
/* Assume that the peer recongizes ASCONF until reported otherwise
* via an ERROR chunk.
*/
asoc
->
peer
.
asconf_capable
=
1
;
asoc
->
peer
.
asconf_capable
=
0
;
/* Create an input queue. */
sctp_inq_init
(
&
asoc
->
base
.
inqueue
);
...
...
net/sctp/sm_make_chunk.c
浏览文件 @
88799fe5
...
...
@@ -1847,7 +1847,7 @@ static void sctp_process_ext_param(struct sctp_association *asoc,
break
;
case
SCTP_CID_ASCONF
:
case
SCTP_CID_ASCONF_ACK
:
asoc
->
peer
.
a
ddip
_capable
=
1
;
asoc
->
peer
.
a
sconf
_capable
=
1
;
break
;
default:
break
;
...
...
@@ -2138,10 +2138,11 @@ int sctp_process_init(struct sctp_association *asoc, sctp_cid_t cid,
/* If the peer claims support for ADD-IP without support
* for AUTH, disable support for ADD-IP.
*/
if
(
asoc
->
peer
.
a
ddip
_capable
&&
!
asoc
->
peer
.
auth_capable
)
{
if
(
asoc
->
peer
.
a
sconf
_capable
&&
!
asoc
->
peer
.
auth_capable
)
{
asoc
->
peer
.
addip_disabled_mask
|=
(
SCTP_PARAM_ADD_IP
|
SCTP_PARAM_DEL_IP
|
SCTP_PARAM_SET_PRIMARY
);
asoc
->
peer
.
asconf_capable
=
0
;
}
/* Walk list of transports, removing transports in the UNKNOWN state. */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录