From: Jouni Malinen Date: Tue, 21 May 2013 13:51:06 +0000 (+0300) Subject: nl80211: Add couple of additional iftypes to debug prints X-Git-Tag: aosp-kk-from-upstream~229 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1045ec36a38ff583b2629f37ca90a7a1f4de5336;p=thirdparty%2Fhostap.git nl80211: Add couple of additional iftypes to debug prints Signed-hostap: Jouni Malinen --- diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index 6bbc3dacb..736fa524e 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -6274,8 +6274,14 @@ static const char * nl80211_iftype_str(enum nl80211_iftype mode) return "STATION"; case NL80211_IFTYPE_AP: return "AP"; + case NL80211_IFTYPE_AP_VLAN: + return "AP_VLAN"; + case NL80211_IFTYPE_WDS: + return "WDS"; case NL80211_IFTYPE_MONITOR: return "MONITOR"; + case NL80211_IFTYPE_MESH_POINT: + return "MESH_POINT"; case NL80211_IFTYPE_P2P_CLIENT: return "P2P_CLIENT"; case NL80211_IFTYPE_P2P_GO: