svn commit: r191471 - projects/mesh11s/sys/net80211
Rui Paulo
rpaulo at FreeBSD.org
Fri Apr 24 18:47:19 UTC 2009
Author: rpaulo
Date: Fri Apr 24 18:47:18 2009
New Revision: 191471
URL: http://svn.freebsd.org/changeset/base/191471
Log:
Use IEEE80211_MESHID_LEN for consistency.
Sponsored by: The FreeBSD Foundation
Modified:
projects/mesh11s/sys/net80211/ieee80211_scan.h
projects/mesh11s/sys/net80211/ieee80211_var.h
Modified: projects/mesh11s/sys/net80211/ieee80211_scan.h
==============================================================================
--- projects/mesh11s/sys/net80211/ieee80211_scan.h Fri Apr 24 18:39:11 2009 (r191470)
+++ projects/mesh11s/sys/net80211/ieee80211_scan.h Fri Apr 24 18:47:18 2009 (r191471)
@@ -242,7 +242,7 @@ struct ieee80211_scan_entry {
int8_t se_rssi; /* avg'd recv ssi */
int8_t se_noise; /* noise floor */
uint8_t se_cc[2]; /* captured country code */
- uint8_t se_meshid[2+IEEE80211_NWID_LEN];
+ uint8_t se_meshid[2+IEEE80211_MESHID_LEN];
struct ieee80211_ies se_ies; /* captured ie's */
u_int se_age; /* age of entry (0 on create) */
};
Modified: projects/mesh11s/sys/net80211/ieee80211_var.h
==============================================================================
--- projects/mesh11s/sys/net80211/ieee80211_var.h Fri Apr 24 18:39:11 2009 (r191470)
+++ projects/mesh11s/sys/net80211/ieee80211_var.h Fri Apr 24 18:47:18 2009 (r191471)
@@ -372,7 +372,7 @@ struct ieee80211vap {
/* set/unset aid pwrsav state */
int iv_csa_count; /* count for doing CSA */
int iv_meshidlen;
- uint8_t iv_meshid[IEEE80211_NWID_LEN];
+ uint8_t iv_meshid[IEEE80211_MESHID_LEN];
struct ieee80211_node *iv_bss; /* information for this node */
struct ieee80211_txparam iv_txparms[IEEE80211_MODE_MAX];
More information about the svn-src-projects
mailing list