svn commit: r193449 - projects/mesh11s/sys/net80211

Rui Paulo rpaulo at FreeBSD.org
Thu Jun 4 18:25:39 UTC 2009


Author: rpaulo
Date: Thu Jun  4 18:25:39 2009
New Revision: 193449
URL: http://svn.freebsd.org/changeset/base/193449

Log:
  Add preqid to the fi structure.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  projects/mesh11s/sys/net80211/ieee80211_hwmp.h

Modified: projects/mesh11s/sys/net80211/ieee80211_hwmp.h
==============================================================================
--- projects/mesh11s/sys/net80211/ieee80211_hwmp.h	Thu Jun  4 18:24:47 2009	(r193448)
+++ projects/mesh11s/sys/net80211/ieee80211_hwmp.h	Thu Jun  4 18:25:39 2009	(r193449)
@@ -38,7 +38,8 @@ struct ieee80211_hwmp_fi {
 	TAILQ_ENTRY(ieee80211_hwmp_fi) fi_next;
 	uint8_t		fi_dest[IEEE80211_ADDR_LEN];
 	ieee80211_seq	fi_seq;			/* HWMP sequence number */
-        uint8_t		fi_nexthop[IEEE80211_ADDR_LEN];
+	ieee80211_seq	fi_preqid;		/* Last PREQ ID seen */
+	uint8_t		fi_nexthop[IEEE80211_ADDR_LEN];
 	uint32_t	fi_metric;		/* Path Metric */
 	uint32_t	fi_nhops;		/* Number of Hops */
 	uint8_t		fi_prevhop[IEEE80211_ADDR_LEN];


More information about the svn-src-projects mailing list