Codebase list golang-github-mdlayher-wifi-upstream / 222a080
explicitly specify NL80211_ATTR_AUTH_TYPE when joining an open SSID (#37) This fixes connecting to open SSIDs on my Raspberry Pi Zero 2 W. related to https://github.com/gokrazy/gokrazy/issues/96 Michael Stapelberg authored 2 years ago GitHub committed 2 years ago
1 changed file(s) with 4 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
100100 {
101101 Type: unix.NL80211_ATTR_SSID,
102102 Data: []byte(ssid),
103 },
104 {
105 Type: unix.NL80211_ATTR_AUTH_TYPE,
106 Data: nlenc.Uint32Bytes(unix.NL80211_AUTHTYPE_OPEN_SYSTEM),
103107 },
104108 })
105109 if err != nil {