android_drv.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Android driver interface
  3. *
  4. * This software may be distributed under the terms of the BSD license.
  5. * See README for more details.
  6. */
  7. #ifndef ANDROID_DRV_H
  8. #define ANDROID_DRV_H
  9. #define WPA_EVENT_DRIVER_STATE "CTRL-EVENT-DRIVER-STATE "
  10. #define MAX_SSID_LEN 32
  11. #define MAX_DRV_CMD_SIZE 248
  12. #define DRV_NUMBER_SEQUENTIAL_ERRORS 4
  13. #define WEXT_PNOSETUP_HEADER "PNOSETUP "
  14. #define WEXT_PNOSETUP_HEADER_SIZE 9
  15. #define WEXT_PNO_TLV_PREFIX 'S'
  16. #define WEXT_PNO_TLV_VERSION '1'
  17. #define WEXT_PNO_TLV_SUBVERSION '2'
  18. #define WEXT_PNO_TLV_RESERVED '0'
  19. #define WEXT_PNO_VERSION_SIZE 4
  20. #define WEXT_PNO_AMOUNT 16
  21. #define WEXT_PNO_SSID_SECTION 'S'
  22. /* SSID header size is SSID section type above + SSID length */
  23. #define WEXT_PNO_SSID_HEADER_SIZE 2
  24. #define WEXT_PNO_SCAN_INTERVAL_SECTION 'T'
  25. #define WEXT_PNO_SCAN_INTERVAL_LENGTH 2
  26. #define WEXT_PNO_SCAN_INTERVAL 30
  27. /* Scan interval size is scan interval section type + scan interval length
  28. * above */
  29. #define WEXT_PNO_SCAN_INTERVAL_SIZE (1 + WEXT_PNO_SCAN_INTERVAL_LENGTH)
  30. #define WEXT_PNO_REPEAT_SECTION 'R'
  31. #define WEXT_PNO_REPEAT_LENGTH 1
  32. #define WEXT_PNO_REPEAT 4
  33. /* Repeat section size is Repeat section type + Repeat value length above */
  34. #define WEXT_PNO_REPEAT_SIZE (1 + WEXT_PNO_REPEAT_LENGTH)
  35. #define WEXT_PNO_MAX_REPEAT_SECTION 'M'
  36. #define WEXT_PNO_MAX_REPEAT_LENGTH 1
  37. #define WEXT_PNO_MAX_REPEAT 3
  38. /* Max Repeat section size is Max Repeat section type + Max Repeat value length
  39. * above */
  40. #define WEXT_PNO_MAX_REPEAT_SIZE (1 + WEXT_PNO_MAX_REPEAT_LENGTH)
  41. /* This corresponds to the size of all sections expect SSIDs */
  42. #define WEXT_PNO_NONSSID_SECTIONS_SIZE \
  43. (WEXT_PNO_SCAN_INTERVAL_SIZE + WEXT_PNO_REPEAT_SIZE + WEXT_PNO_MAX_REPEAT_SIZE)
  44. /* PNO Max command size is total of header, version, ssid and other sections +
  45. * Null termination */
  46. #define WEXT_PNO_MAX_COMMAND_SIZE \
  47. (WEXT_PNOSETUP_HEADER_SIZE + WEXT_PNO_VERSION_SIZE \
  48. + WEXT_PNO_AMOUNT * (WEXT_PNO_SSID_HEADER_SIZE + MAX_SSID_LEN) \
  49. + WEXT_PNO_NONSSID_SECTIONS_SIZE + 1)
  50. #endif /* ANDROID_DRV_H */