libiwinfo: remove unused struct

This commit is contained in:
Jo-Philipp Wich 2011-09-07 04:19:49 +00:00
parent ebc7582205
commit 8bfa762e0c
2 changed files with 5 additions and 11 deletions

View file

@ -1046,7 +1046,7 @@ int nl80211_get_encryption(const char *ifname, char *buf)
static int nl80211_get_assoclist_cb(struct nl_msg *msg, void *arg) static int nl80211_get_assoclist_cb(struct nl_msg *msg, void *arg)
{ {
struct nl80211_arraybuf *arr = arg; struct nl80211_array_buf *arr = arg;
struct iwinfo_assoclist_entry *e = arr->buf; struct iwinfo_assoclist_entry *e = arr->buf;
struct nlattr **attr = nl80211_parse(msg); struct nlattr **attr = nl80211_parse(msg);
struct nlattr *sinfo[NL80211_STA_INFO_MAX + 1]; struct nlattr *sinfo[NL80211_STA_INFO_MAX + 1];
@ -1092,7 +1092,7 @@ int nl80211_get_assoclist(const char *ifname, char *buf, int *len)
int i, noise = 0; int i, noise = 0;
struct dirent *de; struct dirent *de;
struct nl80211_msg_conveyor *req; struct nl80211_msg_conveyor *req;
struct nl80211_arraybuf arr = { .buf = buf, .count = 0 }; struct nl80211_array_buf arr = { .buf = buf, .count = 0 };
struct iwinfo_assoclist_entry *e; struct iwinfo_assoclist_entry *e;
if ((d = opendir("/sys/class/net")) != NULL) if ((d = opendir("/sys/class/net")) != NULL)
@ -1434,7 +1434,7 @@ static int nl80211_get_freqlist_cb(struct nl_msg *msg, void *arg)
{ {
int bands_remain, freqs_remain; int bands_remain, freqs_remain;
struct nl80211_arraybuf *arr = arg; struct nl80211_array_buf *arr = arg;
struct iwinfo_freqlist_entry *e = arr->buf; struct iwinfo_freqlist_entry *e = arr->buf;
struct nlattr **attr = nl80211_parse(msg); struct nlattr **attr = nl80211_parse(msg);
@ -1486,7 +1486,7 @@ static int nl80211_get_freqlist_cb(struct nl_msg *msg, void *arg)
int nl80211_get_freqlist(const char *ifname, char *buf, int *len) int nl80211_get_freqlist(const char *ifname, char *buf, int *len)
{ {
struct nl80211_msg_conveyor *req; struct nl80211_msg_conveyor *req;
struct nl80211_arraybuf arr = { .buf = buf, .count = 0 }; struct nl80211_array_buf arr = { .buf = buf, .count = 0 };
req = nl80211_msg(ifname, NL80211_CMD_GET_WIPHY, 0); req = nl80211_msg(ifname, NL80211_CMD_GET_WIPHY, 0);
if (req) if (req)

View file

@ -52,13 +52,7 @@ struct nl80211_rssi_rate {
int8_t rssi; int8_t rssi;
}; };
struct nl80211_assoc_count { struct nl80211_array_buf {
struct iwinfo_assoclist_entry *entry;
int noise;
int count;
};
struct nl80211_arraybuf {
void *buf; void *buf;
int count; int count;
}; };