Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
95dd91fb
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
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看板
提交
95dd91fb
编写于
6月 19, 2005
作者:
C
Christoph Hellwig
提交者:
Jeff Garzik
6月 27, 2005
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[PATCH] orinoco: scanning support
Patch from Pavel Roskin
上级
16739b06
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
544 addition
and
21 deletion
+544
-21
drivers/net/wireless/orinoco.c
drivers/net/wireless/orinoco.c
+522
-21
drivers/net/wireless/orinoco.h
drivers/net/wireless/orinoco.h
+22
-0
未找到文件。
drivers/net/wireless/orinoco.c
浏览文件 @
95dd91fb
此差异已折叠。
点击以展开。
drivers/net/wireless/orinoco.h
浏览文件 @
95dd91fb
...
...
@@ -32,6 +32,20 @@ struct orinoco_key {
char
data
[
ORINOCO_MAX_KEY_SIZE
];
}
__attribute__
((
packed
));
struct
header_struct
{
/* 802.3 */
u8
dest
[
ETH_ALEN
];
u8
src
[
ETH_ALEN
];
u16
len
;
/* 802.2 */
u8
dsap
;
u8
ssap
;
u8
ctrl
;
/* SNAP */
u8
oui
[
3
];
u16
ethertype
;
}
__attribute__
((
packed
));
typedef
enum
{
FIRMWARE_TYPE_AGERE
,
FIRMWARE_TYPE_INTERSIL
,
...
...
@@ -51,6 +65,7 @@ struct orinoco_private {
int
open
;
u16
last_linkstatus
;
struct
work_struct
join_work
;
struct
work_struct
wevent_work
;
/* Net device stuff */
struct
net_device
*
ndev
;
...
...
@@ -77,6 +92,7 @@ struct orinoco_private {
unsigned
int
has_pm
:
1
;
unsigned
int
has_preamble
:
1
;
unsigned
int
has_sensitivity
:
1
;
unsigned
int
has_hostscan
:
1
;
unsigned
int
broken_disableport
:
1
;
/* Configuration paramaters */
...
...
@@ -103,6 +119,12 @@ struct orinoco_private {
/* Configuration dependent variables */
int
port_type
,
createibss
;
int
promiscuous
,
mc_count
;
/* Scanning support */
int
scan_inprogress
;
/* Scan pending... */
u32
scan_mode
;
/* Type of scan done */
char
*
scan_result
;
/* Result of previous scan */
int
scan_len
;
/* Lenght of result */
};
#ifdef ORINOCO_DEBUG
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录