diff options
author | 2004-12-25 20:40:19 +0000 | |
---|---|---|
committer | 2004-12-25 20:40:19 +0000 | |
commit | 972ced6933e3036af628f0ec9047846bfd07b081 (patch) | |
tree | 240c0a6ff93344457042f9b2231ebf42dafcfc93 /sys/net80211/ieee80211.h | |
parent | much space has been regained because of ramdisk fitting exercises in (diff) | |
download | wireguard-openbsd-972ced6933e3036af628f0ec9047846bfd07b081.tar.xz wireguard-openbsd-972ced6933e3036af628f0ec9047846bfd07b081.zip |
in real C, there is not , after the last enum entry; ok reyk
Diffstat (limited to 'sys/net80211/ieee80211.h')
-rw-r--r-- | sys/net80211/ieee80211.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/net80211/ieee80211.h b/sys/net80211/ieee80211.h index c58e06aa7d7..ec01c28db68 100644 --- a/sys/net80211/ieee80211.h +++ b/sys/net80211/ieee80211.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211.h,v 1.4 2004/12/23 12:27:25 jsg Exp $ */ +/* $OpenBSD: ieee80211.h,v 1.5 2004/12/25 20:40:19 deraadt Exp $ */ /* $NetBSD: ieee80211.h,v 1.6 2004/04/30 23:51:53 dyoung Exp $ */ /*- @@ -387,7 +387,7 @@ enum { IEEE80211_ELEMID_XRATES = 50, IEEE80211_ELEMID_TPC = 150, IEEE80211_ELEMID_CCKM = 156, - IEEE80211_ELEMID_VENDOR = 221, /* vendor private */ + IEEE80211_ELEMID_VENDOR = 221 /* vendor private */ }; #define IEEE80211_CHALLENGE_LEN 128 @@ -452,14 +452,14 @@ typedef u_int8_t *ieee80211_mgt_auth_t; enum { IEEE80211_AUTH_OPEN_REQUEST = 1, - IEEE80211_AUTH_OPEN_RESPONSE = 2, + IEEE80211_AUTH_OPEN_RESPONSE = 2 }; enum { IEEE80211_AUTH_SHARED_REQUEST = 1, IEEE80211_AUTH_SHARED_CHALLENGE = 2, IEEE80211_AUTH_SHARED_RESPONSE = 3, - IEEE80211_AUTH_SHARED_PASS = 4, + IEEE80211_AUTH_SHARED_PASS = 4 }; /* @@ -501,7 +501,7 @@ enum { IEEE80211_STATUS_TOO_MANY_STATIONS = 22, IEEE80211_STATUS_RATES = 23, IEEE80211_STATUS_SHORTSLOT_REQUIRED = 25, - IEEE80211_STATUS_DSSSOFDM_REQUIRED = 26, + IEEE80211_STATUS_DSSSOFDM_REQUIRED = 26 }; #define IEEE80211_WEP_KEYLEN 5 /* 40bit */ @@ -589,7 +589,7 @@ struct ieee80211_duration { enum { IEEE80211_AUTH_NONE = 0, IEEE80211_AUTH_OPEN = 1, - IEEE80211_AUTH_SHARED = 2, + IEEE80211_AUTH_SHARED = 2 }; #endif /* _NET80211_IEEE80211_H_ */ |