Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
7cd61888
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看板
提交
7cd61888
编写于
12月 22, 2007
作者:
A
Al Viro
提交者:
David S. Miller
1月 28, 2008
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
slhc annotations
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
Signed-off-by:
N
Jeff Garzik
<
jeff@garzik.org
>
上级
3dd5f1d4
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
6 addition
and
6 deletion
+6
-6
drivers/net/slhc.c
drivers/net/slhc.c
+6
-6
未找到文件。
drivers/net/slhc.c
浏览文件 @
7cd61888
...
...
@@ -233,6 +233,7 @@ slhc_compress(struct slcompress *comp, unsigned char *icp, int isize,
register
unsigned
char
*
cp
=
new_seq
;
struct
iphdr
*
ip
;
struct
tcphdr
*
th
,
*
oth
;
__sum16
csum
;
/*
...
...
@@ -428,7 +429,7 @@ slhc_compress(struct slcompress *comp, unsigned char *icp, int isize,
/* Grab the cksum before we overwrite it below. Then update our
* state with this packet's header.
*/
deltaA
=
ntohs
(
th
->
check
)
;
csum
=
th
->
check
;
memcpy
(
&
cs
->
cs_ip
,
ip
,
20
);
memcpy
(
&
cs
->
cs_tcp
,
th
,
20
);
/* We want to use the original packet as our compressed packet.
...
...
@@ -449,7 +450,8 @@ slhc_compress(struct slcompress *comp, unsigned char *icp, int isize,
*
cpp
=
ocp
;
*
cp
++
=
changes
;
}
cp
=
put16
(
cp
,(
short
)
deltaA
);
/* Write TCP checksum */
*
(
__sum16
*
)
cp
=
csum
;
cp
+=
2
;
/* deltaS is now the size of the change section of the compressed header */
memcpy
(
cp
,
new_seq
,
deltaS
);
/* Write list of deltas */
memcpy
(
cp
+
deltaS
,
icp
+
hlen
,
isize
-
hlen
);
...
...
@@ -519,10 +521,8 @@ slhc_uncompress(struct slcompress *comp, unsigned char *icp, int isize)
thp
=
&
cs
->
cs_tcp
;
ip
=
&
cs
->
cs_ip
;
if
((
x
=
pull16
(
&
cp
))
==
-
1
)
{
/* Read the TCP checksum */
goto
bad
;
}
thp
->
check
=
htons
(
x
);
thp
->
check
=
*
(
__sum16
*
)
cp
;
cp
+=
2
;
thp
->
psh
=
(
changes
&
TCP_PUSH_BIT
)
?
1
:
0
;
/*
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录