2007-02-10 09:25:27 -05:00
|
|
|
/* Copyright (C) 2006, Red Hat, Inc. */
|
|
|
|
|
2007-11-15 18:05:47 -05:00
|
|
|
#ifndef _LBS_ASSOC_H_
|
|
|
|
#define _LBS_ASSOC_H_
|
2007-02-10 09:25:27 -05:00
|
|
|
|
|
|
|
#include "dev.h"
|
|
|
|
|
2007-11-15 18:05:47 -05:00
|
|
|
void lbs_association_worker(struct work_struct *work);
|
2007-12-08 15:04:36 -05:00
|
|
|
struct assoc_request *lbs_get_association_request(struct lbs_private *priv);
|
2007-05-30 12:14:34 -04:00
|
|
|
|
2008-04-02 10:27:10 -04:00
|
|
|
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 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,
|
2008-08-21 17:46:18 -04:00
|
|
|
u8 bssid[ETH_ALEN], u16 reason);
|
2008-04-02 10:27:10 -04:00
|
|
|
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);
|
|
|
|
int lbs_ret_80211_associate(struct lbs_private *priv,
|
|
|
|
struct cmd_ds_command *resp);
|
|
|
|
|
|
|
|
int lbs_stop_adhoc_network(struct lbs_private *priv);
|
|
|
|
|
2007-11-15 18:05:47 -05:00
|
|
|
#endif /* _LBS_ASSOC_H */
|