aboutsummaryrefslogtreecommitdiffstats
path: root/package/libertas/src/join.h
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2009-10-07 16:03:31 +0000
committerNicolas Thill <nico@openwrt.org>2009-10-07 16:03:31 +0000
commitb795affe0662c01f29b91bfacc17d8ab4978c999 (patch)
treeccdfb0cf3245a9114c1252ae19c71065c70d21a2 /package/libertas/src/join.h
parent7a7a5627cd47245ad50d2868bb4df72f28405001 (diff)
downloadupstream-b795affe0662c01f29b91bfacc17d8ab4978c999.tar.gz
upstream-b795affe0662c01f29b91bfacc17d8ab4978c999.tar.bz2
upstream-b795affe0662c01f29b91bfacc17d8ab4978c999.zip
libertas: use driver from compat-wireless instead of our own (deprecated) one
SVN-Revision: 17982
Diffstat (limited to 'package/libertas/src/join.h')
-rw-r--r--package/libertas/src/join.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/package/libertas/src/join.h b/package/libertas/src/join.h
deleted file mode 100644
index c617d071f7..0000000000
--- a/package/libertas/src/join.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/**
- * Interface for the wlan infrastructure and adhoc join routines
- *
- * Driver interface functions and type declarations for the join module
- * implemented in join.c. Process all start/join requests for
- * both adhoc and infrastructure networks
- */
-#ifndef _LBS_JOIN_H
-#define _LBS_JOIN_H
-
-#include "defs.h"
-#include "dev.h"
-
-struct cmd_ds_command;
-int lbs_cmd_80211_authenticate(struct lbs_private *priv,
- struct cmd_ds_command *cmd,
- void *pdata_buf);
-int lbs_cmd_80211_ad_hoc_join(struct lbs_private *priv,
- struct cmd_ds_command *cmd,
- void *pdata_buf);
-int lbs_cmd_80211_ad_hoc_stop(struct lbs_private *priv,
- struct cmd_ds_command *cmd);
-int lbs_cmd_80211_ad_hoc_start(struct lbs_private *priv,
- struct cmd_ds_command *cmd,
- void *pdata_buf);
-int lbs_cmd_80211_deauthenticate(struct lbs_private *priv,
- struct cmd_ds_command *cmd);
-int lbs_cmd_80211_associate(struct lbs_private *priv,
- struct cmd_ds_command *cmd,
- void *pdata_buf);
-
-int lbs_ret_80211_ad_hoc_start(struct lbs_private *priv,
- struct cmd_ds_command *resp);
-int lbs_ret_80211_ad_hoc_stop(struct lbs_private *priv,
- struct cmd_ds_command *resp);
-int lbs_ret_80211_disassociate(struct lbs_private *priv,
- struct cmd_ds_command *resp);
-int lbs_ret_80211_associate(struct lbs_private *priv,
- struct cmd_ds_command *resp);
-
-int lbs_start_adhoc_network(struct lbs_private *priv,
- struct assoc_request * assoc_req);
-int lbs_join_adhoc_network(struct lbs_private *priv,
- struct assoc_request * assoc_req);
-int lbs_stop_adhoc_network(struct lbs_private *priv);
-
-int lbs_send_deauthentication(struct lbs_private *priv);
-
-int lbs_associate(struct lbs_private *priv, struct assoc_request *assoc_req);
-
-void lbs_unset_basic_rate_flags(u8 *rates, size_t len);
-
-#endif