summaryrefslogtreecommitdiff
path: root/noncore
authormjm <mjm>2003-02-09 15:48:57 (UTC)
committer mjm <mjm>2003-02-09 15:48:57 (UTC)
commitf7aa8611df1576234469013f6059cc9ee2aa8465 (patch) (unidiff)
tree4848dc2d90d89826a30bc9941b0d298850603a9f /noncore
parentcc96fbb10eaeef5796f62ac26635b1b6ff42145b (diff)
downloadopie-f7aa8611df1576234469013f6059cc9ee2aa8465.zip
opie-f7aa8611df1576234469013f6059cc9ee2aa8465.tar.gz
opie-f7aa8611df1576234469013f6059cc9ee2aa8465.tar.bz2
added wl_cardtype_t structure
Diffstat (limited to 'noncore') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/wellenreiter/libwellenreiter/source/wl_types.hh7
1 files changed, 6 insertions, 1 deletions
diff --git a/noncore/net/wellenreiter/libwellenreiter/source/wl_types.hh b/noncore/net/wellenreiter/libwellenreiter/source/wl_types.hh
index f12d65e..cd482fe 100644
--- a/noncore/net/wellenreiter/libwellenreiter/source/wl_types.hh
+++ b/noncore/net/wellenreiter/libwellenreiter/source/wl_types.hh
@@ -14,13 +14,18 @@
14#define WL_STARTSNIFF 98 14#define WL_STARTSNIFF 98
15#define WL_STOPSNIFF 99 15#define WL_STOPSNIFF 99
16 16
17/* Socket specific */ 17/* Socket specific */
18#define WL_SOCKBUF 512 /* Buffer for wl_send and wl_recv calls */ 18#define WL_SOCKBUF 512 /* Buffer for wl_send and wl_recv calls */
19 19
20/* Protocol specific */ 20/* Channelswitching */
21typedef struct {
22 int type; /* Type of card (chip) */
23 char iface[6]; /* Interface of card */
24} wl_cardtype_t;
25
21 26
22/* WL network structure */ 27/* WL network structure */
23typedef struct { 28typedef struct {
24 int net_type; /* 1 = Accesspoint ; 2 = Ad-Hoc */ 29 int net_type; /* 1 = Accesspoint ; 2 = Ad-Hoc */
25 int ssid_len; /* Length of SSID */ 30 int ssid_len; /* Length of SSID */
26 int channel; /* Channel */ 31 int channel; /* Channel */