Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
9758d0f0
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看板
提交
9758d0f0
编写于
19年前
作者:
J
Jeff Garzik
提交者:
Jeff Garzik
19年前
浏览文件
操作
浏览文件
下载
差异文件
Merge /spare/repo/netdev-2.6/ branch 'orinoco'
上级
0dd3c781
1a9fe638
变更
3
展开全部
隐藏空白更改
内联
并排
Showing
3 changed file
with
2368 addition
and
1011 deletion
+2368
-1011
drivers/net/wireless/orinoco.c
drivers/net/wireless/orinoco.c
+1457
-1010
drivers/net/wireless/orinoco.h
drivers/net/wireless/orinoco.h
+29
-1
include/net/ieee80211.h
include/net/ieee80211.h
+882
-0
未找到文件。
drivers/net/wireless/orinoco.c
浏览文件 @
9758d0f0
此差异已折叠。
点击以展开。
drivers/net/wireless/orinoco.h
浏览文件 @
9758d0f0
...
...
@@ -7,7 +7,7 @@
#ifndef _ORINOCO_H
#define _ORINOCO_H
#define DRIVER_VERSION "0.1
4alpha
2"
#define DRIVER_VERSION "0.1
5rc
2"
#include <linux/types.h>
#include <linux/spinlock.h>
...
...
@@ -22,6 +22,8 @@
#define WIRELESS_SPY // enable iwspy support
#define MAX_SCAN_LEN 4096
#define ORINOCO_MAX_KEY_SIZE 14
#define ORINOCO_MAX_KEYS 4
...
...
@@ -30,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
,
...
...
@@ -48,6 +64,8 @@ struct orinoco_private {
/* driver state */
int
open
;
u16
last_linkstatus
;
struct
work_struct
join_work
;
struct
work_struct
wevent_work
;
/* Net device stuff */
struct
net_device
*
ndev
;
...
...
@@ -74,7 +92,9 @@ 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
;
unsigned
int
broken_monitor
:
1
;
/* Configuration paramaters */
u32
iw_mode
;
...
...
@@ -84,6 +104,8 @@ struct orinoco_private {
int
bitratemode
;
char
nick
[
IW_ESSID_MAX_SIZE
+
1
];
char
desired_essid
[
IW_ESSID_MAX_SIZE
+
1
];
char
desired_bssid
[
ETH_ALEN
];
int
bssid_fixed
;
u16
frag_thresh
,
mwo_robust
;
u16
channel
;
u16
ap_density
,
rts_thresh
;
...
...
@@ -98,6 +120,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
...
...
This diff is collapsed.
Click to expand it.
include/net/ieee80211.h
0 → 100644
浏览文件 @
9758d0f0
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录
新手
引导
客服
返回
顶部