Date: Fri, 13 Jan 2017 07:24:58 +0000 (UTC) From: Adrian Chadd <adrian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r312017 - head/sys/net80211 Message-ID: <201701130724.v0D7OwkD020246@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adrian Date: Fri Jan 13 07:24:58 2017 New Revision: 312017 URL: https://svnweb.freebsd.org/changeset/base/312017 Log: [net80211] add a macro to check this configuration option. Modified: head/sys/net80211/ieee80211_var.h Modified: head/sys/net80211/ieee80211_var.h ============================================================================== --- head/sys/net80211/ieee80211_var.h Fri Jan 13 07:08:14 2017 (r312016) +++ head/sys/net80211/ieee80211_var.h Fri Jan 13 07:24:58 2017 (r312017) @@ -95,6 +95,9 @@ */ #define IEEE80211_CONF_VHT(ic) ((ic)->ic_vhtcaps != 0) +#define IEEE80211_CONF_SEQNO_OFFLOAD(ic) \ + ((ic)->ic_flags_ext & IEEE80211_FEXT_SEQNO_OFFLOAD) + /* * 802.11 control state is split into a common portion that maps * 1-1 to a physical device and one or more "Virtual AP's" (VAP)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701130724.v0D7OwkD020246>