ac558ca2ae
Some functions where declared in header files, but used only once. They are now static functions. After doing this, I found out that some functions weren't used at all. I removed this dead code. Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
53 lines
1.8 KiB
C
53 lines
1.8 KiB
C
/**
|
|
* Interface for the wlan infrastructure and adhoc join routines
|
|
*
|
|
* Driver interface functions and type declarations for the join module
|
|
* implemented in wlan_join.c. Process all start/join requests for
|
|
* both adhoc and infrastructure networks
|
|
*/
|
|
#ifndef _WLAN_JOIN_H
|
|
#define _WLAN_JOIN_H
|
|
|
|
#include "defs.h"
|
|
#include "dev.h"
|
|
|
|
struct cmd_ds_command;
|
|
int libertas_cmd_80211_authenticate(wlan_private * priv,
|
|
struct cmd_ds_command *cmd,
|
|
void *pdata_buf);
|
|
int libertas_cmd_80211_ad_hoc_join(wlan_private * priv,
|
|
struct cmd_ds_command *cmd,
|
|
void *pdata_buf);
|
|
int libertas_cmd_80211_ad_hoc_stop(wlan_private * priv,
|
|
struct cmd_ds_command *cmd);
|
|
int libertas_cmd_80211_ad_hoc_start(wlan_private * priv,
|
|
struct cmd_ds_command *cmd,
|
|
void *pdata_buf);
|
|
int libertas_cmd_80211_deauthenticate(wlan_private * priv,
|
|
struct cmd_ds_command *cmd);
|
|
int libertas_cmd_80211_associate(wlan_private * priv,
|
|
struct cmd_ds_command *cmd,
|
|
void *pdata_buf);
|
|
|
|
int libertas_ret_80211_ad_hoc_start(wlan_private * priv,
|
|
struct cmd_ds_command *resp);
|
|
int libertas_ret_80211_ad_hoc_stop(wlan_private * priv,
|
|
struct cmd_ds_command *resp);
|
|
int libertas_ret_80211_disassociate(wlan_private * priv,
|
|
struct cmd_ds_command *resp);
|
|
int libertas_ret_80211_associate(wlan_private * priv,
|
|
struct cmd_ds_command *resp);
|
|
|
|
int libertas_start_adhoc_network(wlan_private * priv,
|
|
struct assoc_request * assoc_req);
|
|
int libertas_join_adhoc_network(wlan_private * priv,
|
|
struct assoc_request * assoc_req);
|
|
int libertas_stop_adhoc_network(wlan_private * priv);
|
|
|
|
int libertas_send_deauthentication(wlan_private * priv);
|
|
|
|
int wlan_associate(wlan_private * priv, struct assoc_request * assoc_req);
|
|
|
|
void libertas_unset_basic_rate_flags(u8 * rates, size_t len);
|
|
|
|
#endif
|