Changeset 10544


Ignore:
Timestamp:
10/20/08 18:51:28 (5 years ago)
Author:
BrainSlayer
Message:

updated headers

Location:
src/include.v24
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/include.v24/code_pattern.h

    r10006 r10544  
    4949#define CODE_PATTERN_WRTSL54GS   "W54U" 
    5050#define CODE_PATTERN_WRT150N   "N150" 
    51 #define CODE_PATTERN_WRT160N   "N150"   
     51#define CODE_PATTERN_WRT160N   "N160"   
    5252#define CODE_PATTERN_WRT300N   "EWCB" 
    5353#define CODE_PATTERN_WRT300NV11   "EWC2" 
  • src/include.v24/wlioctl.h

    r7853 r10544  
    344344#define WPA_AUTH_UNSPECIFIED    0x0002  /* over 802.1x */ 
    345345#define WPA_AUTH_PSK            0x0004  /* Pre-shared key */ 
     346#define BRCM_AUTH_PSK           0x0100  /* BRCM specific PSK */ 
    346347/* #define WPA_AUTH_8021X 0x0020 */     /* 802.1x, reserved */ 
    347348#ifdef BCMWPA2 
     
    479480        uint32                  in;             /* seconds elapsed since associated */ 
    480481        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 */ 
    481488} sta_info_t; 
     489 
     490#define WL_OLD_STAINFO_SIZE     OFFSETOF(sta_info_t, tx_pkts) 
    482491 
    483492#define WL_STA_VER              2 
     
    498507#define WL_STA_APSD_VO          0x1000          /* APSD delv/trigger for AC_VO is default enabled */ 
    499508#define WL_STA_N_CAP            0x2000          /* STA 802.11n capable */ 
     509#define WL_STA_SCBSTATS         0x4000          /* Per STA debug stats */ 
    500510 
    501511#define WL_WDS_LINKUP           WL_STA_WDS_LINKUP       /* deprecated */ 
     
    961971        int min_deltat; /* Minimum spacing between pulses */ 
    962972        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 */ 
    963976} wl_radar_args_t; 
     977 
     978#define WL_RADAR_ARGS_VERSION 1 
     979 
     980typedef 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 */ 
    964993 
    965994 
Note: See TracChangeset for help on using the changeset viewer.