Skip to content

Commit

Permalink
Merge pull request #175 from JAndrassy/wifis3_enctype_legacy
Browse files Browse the repository at this point in the history
WiFiS3/C3 - add legacy wl_enc_type constants aliases
  • Loading branch information
aentinger authored Dec 14, 2023
2 parents e106540 + 0c9c5db commit a9fc7ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libraries/WiFiS3/src/WiFiTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ typedef enum {
enum wl_enc_type {
ENC_TYPE_WEP,
ENC_TYPE_WPA,
ENC_TYPE_TKIP = ENC_TYPE_WPA,
ENC_TYPE_WPA2,
ENC_TYPE_CCMP = ENC_TYPE_WPA2,
ENC_TYPE_WPA2_ENTERPRISE,
ENC_TYPE_WPA3,
ENC_TYPE_NONE,
Expand Down
2 changes: 2 additions & 0 deletions libraries/lwIpWrapper/src/CNetIf.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ typedef enum {
enum wl_enc_type {
ENC_TYPE_WEP,
ENC_TYPE_WPA,
ENC_TYPE_TKIP = ENC_TYPE_WPA,
ENC_TYPE_WPA2,
ENC_TYPE_CCMP = ENC_TYPE_WPA2,
ENC_TYPE_WPA2_ENTERPRISE,
ENC_TYPE_WPA3,
ENC_TYPE_NONE,
Expand Down

0 comments on commit a9fc7ea

Please sign in to comment.