1/*
2 * Host AP (software wireless LAN access point) user space daemon for
3 * Host AP kernel driver
4 * Copyright 2002-2003, Jouni Malinen <jkmaline@cc.hut.fi>
5 * Copyright 2002-2004, Instant802 Networks, Inc.
6 * Copyright 2005, Devicescape Software, Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#ifndef HOSTAPD_IOCTL_H
14#define HOSTAPD_IOCTL_H
15
16#ifdef __KERNEL__
17#include <linux/types.h>
18#endif /* __KERNEL__ */
19
20#define PRISM2_IOCTL_PRISM2_PARAM (SIOCIWFIRSTPRIV + 0)
21#define PRISM2_IOCTL_GET_PRISM2_PARAM (SIOCIWFIRSTPRIV + 1)
22#define PRISM2_IOCTL_HOSTAPD (SIOCIWFIRSTPRIV + 3)
23
24/* PRISM2_IOCTL_PRISM2_PARAM ioctl() subtypes:
25 * This table is no longer added to, the whole sub-ioctl
26 * mess shall be deleted completely. */
27enum {
28	PRISM2_PARAM_IEEE_802_1X = 23,
29	PRISM2_PARAM_ANTSEL_TX = 24,
30	PRISM2_PARAM_ANTSEL_RX = 25,
31
32	/* Instant802 additions */
33	PRISM2_PARAM_CTS_PROTECT_ERP_FRAMES = 1001,
34	PRISM2_PARAM_DROP_UNENCRYPTED = 1002,
35	PRISM2_PARAM_PREAMBLE = 1003,
36	PRISM2_PARAM_SHORT_SLOT_TIME = 1006,
37	PRISM2_PARAM_NEXT_MODE = 1008,
38	PRISM2_PARAM_CLEAR_KEYS = 1009,
39	PRISM2_PARAM_RADIO_ENABLED = 1010,
40	PRISM2_PARAM_ANTENNA_MODE = 1013,
41	PRISM2_PARAM_STAT_TIME = 1016,
42	PRISM2_PARAM_STA_ANTENNA_SEL = 1017,
43	PRISM2_PARAM_FORCE_UNICAST_RATE = 1018,
44	PRISM2_PARAM_RATE_CTRL_NUM_UP = 1019,
45	PRISM2_PARAM_RATE_CTRL_NUM_DOWN = 1020,
46	PRISM2_PARAM_MAX_RATECTRL_RATE = 1021,
47	PRISM2_PARAM_TX_POWER_REDUCTION = 1022,
48	PRISM2_PARAM_KEY_TX_RX_THRESHOLD = 1024,
49	PRISM2_PARAM_DEFAULT_WEP_ONLY = 1026,
50	PRISM2_PARAM_WIFI_WME_NOACK_TEST = 1033,
51	PRISM2_PARAM_SCAN_FLAGS = 1035,
52	PRISM2_PARAM_HW_MODES = 1036,
53	PRISM2_PARAM_CREATE_IBSS = 1037,
54	PRISM2_PARAM_WMM_ENABLED = 1038,
55	PRISM2_PARAM_MIXED_CELL = 1039,
56	PRISM2_PARAM_RADAR_DETECT = 1043,
57	PRISM2_PARAM_SPECTRUM_MGMT = 1044,
58};
59
60enum {
61	IEEE80211_KEY_MGMT_NONE = 0,
62	IEEE80211_KEY_MGMT_IEEE8021X = 1,
63	IEEE80211_KEY_MGMT_WPA_PSK = 2,
64	IEEE80211_KEY_MGMT_WPA_EAP = 3,
65};
66
67
68/* Data structures used for get_hw_features ioctl */
69struct hostapd_ioctl_hw_modes_hdr {
70	int mode;
71	int num_channels;
72	int num_rates;
73};
74
75struct ieee80211_channel_data {
76	short chan; /* channel number (IEEE 802.11) */
77	short freq; /* frequency in MHz */
78	int flag; /* flag for hostapd use (IEEE80211_CHAN_*) */
79};
80
81struct ieee80211_rate_data {
82	int rate; /* rate in 100 kbps */
83	int flags; /* IEEE80211_RATE_ flags */
84};
85
86
87/* ADD_IF, REMOVE_IF, and UPDATE_IF 'type' argument */
88enum {
89	HOSTAP_IF_WDS = 1, HOSTAP_IF_VLAN = 2, HOSTAP_IF_BSS = 3,
90	HOSTAP_IF_STA = 4
91};
92
93struct hostapd_if_wds {
94	u8 remote_addr[ETH_ALEN];
95};
96
97struct hostapd_if_vlan {
98	u8 id;
99};
100
101struct hostapd_if_bss {
102	u8 bssid[ETH_ALEN];
103};
104
105struct hostapd_if_sta {
106};
107
108#endif /* HOSTAPD_IOCTL_H */
109