Changeset 10544
- Timestamp:
- 10/20/08 18:51:28 (5 years ago)
- Location:
- src/include.v24
- Files:
-
- 2 edited
-
code_pattern.h (modified) (1 diff)
-
wlioctl.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/include.v24/code_pattern.h
r10006 r10544 49 49 #define CODE_PATTERN_WRTSL54GS "W54U" 50 50 #define CODE_PATTERN_WRT150N "N150" 51 #define CODE_PATTERN_WRT160N "N1 50"51 #define CODE_PATTERN_WRT160N "N160" 52 52 #define CODE_PATTERN_WRT300N "EWCB" 53 53 #define CODE_PATTERN_WRT300NV11 "EWC2" -
src/include.v24/wlioctl.h
r7853 r10544 344 344 #define WPA_AUTH_UNSPECIFIED 0x0002 /* over 802.1x */ 345 345 #define WPA_AUTH_PSK 0x0004 /* Pre-shared key */ 346 #define BRCM_AUTH_PSK 0x0100 /* BRCM specific PSK */ 346 347 /* #define WPA_AUTH_8021X 0x0020 */ /* 802.1x, reserved */ 347 348 #ifdef BCMWPA2 … … 479 480 uint32 in; /* seconds elapsed since associated */ 480 481 uint32 listen_interval_inms; /* Min Listen interval in ms for this STA */ 482 uint32 tx_pkts; /* # of packets transmitted */ 483 uint32 tx_failures; /* # of packets failed */ 484 uint32 rx_ucast_pkts; /* # of unicast packets received */ 485 uint32 rx_mcast_pkts; /* # of multicast packets received */ 486 uint32 tx_rate; /* Rate of last successful tx frame */ 487 uint32 rx_rate; /* Rate of last successful rx frame */ 481 488 } sta_info_t; 489 490 #define WL_OLD_STAINFO_SIZE OFFSETOF(sta_info_t, tx_pkts) 482 491 483 492 #define WL_STA_VER 2 … … 498 507 #define WL_STA_APSD_VO 0x1000 /* APSD delv/trigger for AC_VO is default enabled */ 499 508 #define WL_STA_N_CAP 0x2000 /* STA 802.11n capable */ 509 #define WL_STA_SCBSTATS 0x4000 /* Per STA debug stats */ 500 510 501 511 #define WL_WDS_LINKUP WL_STA_WDS_LINKUP /* deprecated */ … … 961 971 int min_deltat; /* Minimum spacing between pulses */ 962 972 int max_deltat; /* Maximum spacing between pulses */ 973 uint16 autocorr; /* Radar detection, autocorr on or off */ 974 uint16 st_level_time; /* Radar detection, start_timing level */ 975 uint32 version; /* version */ 963 976 } wl_radar_args_t; 977 978 #define WL_RADAR_ARGS_VERSION 1 979 980 typedef struct { 981 uint32 version; /* version */ 982 uint16 thresh0_20_lo; /* Radar detection, thresh 0 (range 5250-5350MHz) for BW 20MHz */ 983 uint16 thresh1_20_lo; /* Radar detection, thresh 1 (range 5250-5350MHz) for BW 20MHz */ 984 uint16 thresh0_40_lo; /* Radar detection, thresh 0 (range 5250-5350MHz) for BW 40MHz */ 985 uint16 thresh1_40_lo; /* Radar detection, thresh 1 (range 5250-5350MHz) for BW 40MHz */ 986 uint16 thresh0_20_hi; /* Radar detection, thresh 0 (range 5470-5725MHz) for BW 20MHz */ 987 uint16 thresh1_20_hi; /* Radar detection, thresh 1 (range 5470-5725MHz) for BW 20MHz */ 988 uint16 thresh0_40_hi; /* Radar detection, thresh 0 (range 5470-5725MHz) for BW 40MHz */ 989 uint16 thresh1_40_hi; /* Radar detection, thresh 1 (range 5470-5725MHz) for BW 40MHz */ 990 } wl_radar_thr_t; 991 #define WL_RADAR_THR_VERSION 1 992 #define WL_THRESHOLD_LO_BAND 70 /* range from 5250MHz - 5350MHz */ 964 993 965 994
Note: See TracChangeset
for help on using the changeset viewer.
