summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--caputils/ws80211_utils.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/caputils/ws80211_utils.h b/caputils/ws80211_utils.h
index da4ed42065..d111030e25 100644
--- a/caputils/ws80211_utils.h
+++ b/caputils/ws80211_utils.h
@@ -41,25 +41,25 @@ enum ws80211_channel_type {
/* XXX This doesn't match AirpcapValidationType. Should it? */
enum ws80211_fcs_validation {
- WS80211_FCS_ALL,
- WS80211_FCS_VALID,
- WS80211_FCS_INVALID
+ WS80211_FCS_ALL,
+ WS80211_FCS_VALID,
+ WS80211_FCS_INVALID
};
struct ws80211_interface
{
char *ifname;
gboolean can_set_freq;
- gboolean can_check_fcs;
- GArray *frequencies; /* Array of guint32? */
+ gboolean can_check_fcs;
+ GArray *frequencies; /* Array of guint32? */
int channel_types; /* Union for all bands */
- int cap_monitor;
+ int cap_monitor;
};
struct ws80211_iface_info {
- int current_freq;
+ int current_freq;
enum ws80211_channel_type current_chan_type;
- enum ws80211_fcs_validation current_fcs_validation;
+ enum ws80211_fcs_validation current_fcs_validation;
};
/** Initialize the 802.11 environment.