diff options
| author | Sam Leffler <sam@FreeBSD.org> | 2006-12-27 18:46:18 +0000 |
|---|---|---|
| committer | Sam Leffler <sam@FreeBSD.org> | 2006-12-27 18:46:18 +0000 |
| commit | 41b3c790eb3c76184859eb20f3f2eba98ec7d47c (patch) | |
| tree | 8bd925a7f6c33cd28325df02b1a6153b8b091d2d /sys/net | |
| parent | bf42b54c6c0af191821902285ec0f6e3166b5c89 (diff) | |
Notes
Diffstat (limited to 'sys/net')
| -rw-r--r-- | sys/net/if_media.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/net/if_media.h b/sys/net/if_media.h index 81a82ca546f4..48897e22c5ca 100644 --- a/sys/net/if_media.h +++ b/sys/net/if_media.h @@ -198,6 +198,9 @@ uint64_t ifmedia_baudrate(int); #define IFM_IEEE80211_OFDM72 18 /* OFDM 72Mbps */ #define IFM_IEEE80211_DS354k 19 /* Direct Sequence 354Kbps */ #define IFM_IEEE80211_DS512k 20 /* Direct Sequence 512Kbps */ +#define IFM_IEEE80211_OFDM3 21 /* OFDM 3Mbps */ +#define IFM_IEEE80211_OFDM4 22 /* OFDM 4.5Mbps */ +#define IFM_IEEE80211_OFDM27 23 /* OFDM 27Mbps */ #define IFM_IEEE80211_ADHOC 0x00000100 /* Operate in Adhoc mode */ #define IFM_IEEE80211_HOSTAP 0x00000200 /* Operate in Host AP mode */ @@ -437,6 +440,9 @@ struct ifmedia_description { { IFM_IEEE80211_OFDM72, "OFDM/72Mbps" }, \ { IFM_IEEE80211_DS354k, "DS/354Kbps" }, \ { IFM_IEEE80211_DS512k, "DS/512Kbps" }, \ + { IFM_IEEE80211_OFDM3, "OFDM/3Mbps" }, \ + { IFM_IEEE80211_OFDM4, "OFDM/4.5Mbps" }, \ + { IFM_IEEE80211_OFDM27, "OFDM/27Mbps" }, \ { 0, NULL }, \ } @@ -472,6 +478,9 @@ struct ifmedia_description { { IFM_IEEE80211_DS354k, "DirectSequence/354Kbps" }, \ { IFM_IEEE80211_DS512k, "DS512K" }, \ { IFM_IEEE80211_DS512k, "DirectSequence/512Kbps" }, \ + { IFM_IEEE80211_OFDM3, "OFDM3" }, \ + { IFM_IEEE80211_OFDM4, "OFDM4.5" }, \ + { IFM_IEEE80211_OFDM27, "OFDM27" }, \ { 0, NULL }, \ } |
