summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/libwellenreiter/docs/wl_types.8
authormjm <mjm>2002-12-31 12:37:43 (UTC)
committer mjm <mjm>2002-12-31 12:37:43 (UTC)
commit44a0af99df02feb01c9879506e4d34d96afe046b (patch) (side-by-side diff)
treec4dba77fedbb96a313a4e65d30b89d3e7b9ceac4 /noncore/net/wellenreiter/libwellenreiter/docs/wl_types.8
parentd331ca1cf11e8f525665a1e5cb10f491d47c19e8 (diff)
downloadopie-44a0af99df02feb01c9879506e4d34d96afe046b.zip
opie-44a0af99df02feb01c9879506e4d34d96afe046b.tar.gz
opie-44a0af99df02feb01c9879506e4d34d96afe046b.tar.bz2
smaller updates (sockaddr_in structures,...)
added short info for wl_types.hh
Diffstat (limited to 'noncore/net/wellenreiter/libwellenreiter/docs/wl_types.8') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/libwellenreiter/docs/wl_types.825
1 files changed, 25 insertions, 0 deletions
diff --git a/noncore/net/wellenreiter/libwellenreiter/docs/wl_types.8 b/noncore/net/wellenreiter/libwellenreiter/docs/wl_types.8
new file mode 100644
index 0000000..d12f564
--- a/dev/null
+++ b/noncore/net/wellenreiter/libwellenreiter/docs/wl_types.8
@@ -0,0 +1,25 @@
+wl_types.hh
+
+wl_types.hh contains the global buffers and type definitions.
+
+At the moment these are:
+
+/* Type definitions, to be continued */
+#define WL_NETFOUND 01
+#define WL_NETLOST 02
+#define WL_STARTSNIFF 98
+#define WL_STOPSNIFF 99
+
+#define WL_SOCKBUF 512 /* Buffer for wl_send and wl_recv calls */
+
+/* WL network structure */
+typedef struct {
+ int net_type; /* 1 = Accesspoint ; 2 = Ad-Hoc */
+ int ssid_len; /* Length of SSID */
+ int channel; /* Channel */
+ int wep; /* 1 = WEP enabled ; 0 = disabled */
+ char mac[64]; /* MAC address of Accesspoint */
+ char bssid[128]; /* BSSID of Net */
+} wl_network_t;
+
+Will be filled up with other structs and size definitions asap.