Linux wireless drivers development
 help / color / mirror / Atom feed
* FILS offloading
@ 2017-03-01 10:28 Arend Van Spriel
  2017-03-01 14:30 ` Malinen, Jouni
  0 siblings, 1 reply; 2+ messages in thread
From: Arend Van Spriel @ 2017-03-01 10:28 UTC (permalink / raw)
  To: Jouni Malinen; +Cc: linux-wireless, Gery Kahn, Jouni Malinen

Hoi Jouni,

Not sure which email address to use ;-) I noticed a while ago that FILS
offloading was on the agenda of wireless workshop in Santa Fe. Recently,
looked at the FILS patches that were applied upstream and noticed:

static bool nl80211_valid_auth_type(struct cfg80211_registered_device *rdev,
				    enum nl80211_auth_type auth_type,
				    enum nl80211_commands cmd)
{
	...
	switch (cmd) {
	...
	case NL80211_CMD_CONNECT:
	case NL80211_CMD_START_AP:
		/* SAE not supported yet */
		if (auth_type == NL80211_AUTHTYPE_SAE)
			return false;
		/* FILS not supported yet */
		if (auth_type == NL80211_AUTHTYPE_FILS_SK ||
		    auth_type == NL80211_AUTHTYPE_FILS_SK_PFS ||
		    auth_type == NL80211_AUTHTYPE_FILS_PK)
			return false;
		return true;
	default:
		return false;
	}
}

Are there any plans on QCA side to add FILS support for fullmac devices,
ie. supporting CONNECT command.

Regards,
Arend

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-03-01 14:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-01 10:28 FILS offloading Arend Van Spriel
2017-03-01 14:30 ` Malinen, Jouni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox