cfg_mlme_threshold.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * Copyright (c) 2012-2018 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * DOC: This file contains centralized definitions of converged configuration.
  20. */
  21. #ifndef __CFG_MLME_THRESHOLD_H
  22. #define __CFG_MLME_THRESHOLD_H
  23. #include "wni_cfg.h"
  24. /*
  25. * <ini>
  26. * RTSThreshold - Will provide RTSThreshold
  27. * @Min: 0
  28. * @Max: 1048576
  29. * @Default: 2347
  30. *
  31. * This ini is used to set default RTSThreshold
  32. * If minimum value 0 is selectd then it will use always RTS
  33. * max is the max frame size
  34. *
  35. * Related: None
  36. *
  37. * Supported Feature: STA
  38. *
  39. * Usage: Internal/External
  40. *
  41. * </ini>
  42. */
  43. #define CFG_RTS_THRESHOLD CFG_INI_UINT( \
  44. "RTSThreshold", \
  45. 0, \
  46. 1048576, \
  47. 2347, \
  48. CFG_VALUE_OR_DEFAULT, \
  49. "Default RTS Threshold")
  50. /*
  51. * <ini>
  52. * gFragmentationThreshold - It will set fragmentation threshold
  53. * @Min: 256
  54. * @Max: 8000
  55. * @Default: 8000
  56. *
  57. * This ini is used to indicate default fragmentation threshold
  58. *
  59. * Related: None
  60. *
  61. * Supported Feature: STA
  62. *
  63. * Usage: Internal/External
  64. *
  65. * </ini>
  66. */
  67. #define CFG_FRAG_THRESHOLD CFG_INI_UINT( \
  68. "gFragmentationThreshold", \
  69. 256, \
  70. 8000, \
  71. 8000, \
  72. CFG_VALUE_OR_DEFAULT, \
  73. "Default Fragmentation Threshold")
  74. #define CFG_THRESHOLD_ALL \
  75. CFG(CFG_RTS_THRESHOLD) \
  76. CFG(CFG_FRAG_THRESHOLD)
  77. #endif /* __CFG_MLME_MAIN_H */