cfg_mlme_timeout.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. /*
  2. * Copyright (c) 2011-2019, 2021 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_TIMEOUT_H
  22. #define __CFG_MLME_TIMEOUT_H
  23. /*
  24. * <ini>
  25. * join_failure_timeout - Join failure timeout value
  26. * @Min: 500
  27. * @Max: 3000
  28. * @Default: 3000
  29. *
  30. * This cfg is used to configure the join failure timeout.
  31. *
  32. * Usage: Internal
  33. *
  34. * </ini>
  35. */
  36. #define CFG_JOIN_FAILURE_TIMEOUT CFG_INI_UINT( \
  37. "join_failure_timeout", \
  38. 500, \
  39. 3000, \
  40. 3000, \
  41. CFG_VALUE_OR_DEFAULT, \
  42. "Join failure timeout")
  43. /*
  44. * <ini>
  45. * auth_failure_timeout - Auth failure timeout value
  46. * @Min: 500
  47. * @Max: 5000
  48. * @Default: 1000
  49. *
  50. * This cfg is used to configure the auth failure timeout.
  51. *
  52. * Usage: Internal
  53. *
  54. * </ini>
  55. */
  56. #define CFG_AUTH_FAILURE_TIMEOUT CFG_INI_UINT( \
  57. "auth_failure_timeout", \
  58. 500, \
  59. 5000, \
  60. 1000, \
  61. CFG_VALUE_OR_DEFAULT, \
  62. "auth failure timeout")
  63. /*
  64. * <ini>
  65. * auth_rsp_timeout - Auth response timeout value
  66. * @Min: 0
  67. * @Max: 65535
  68. * @Default: 1000
  69. *
  70. * This cfg is used to configure the auth response timeout.
  71. *
  72. * Usage: Internal
  73. *
  74. * </ini>
  75. */
  76. #define CFG_AUTH_RSP_TIMEOUT CFG_INI_UINT( \
  77. "auth_rsp_timeout", \
  78. 0, \
  79. 65535, \
  80. 1000, \
  81. CFG_VALUE_OR_DEFAULT, \
  82. "auth rsp timeout")
  83. /*
  84. * <ini>
  85. * assoc_failure_timeout - Assoc failure timeout value
  86. * @Min: 500
  87. * @Max: 3000
  88. * @Default: 2000
  89. *
  90. * This cfg is used to configure the assoc failure timeout.
  91. *
  92. * Usage: Internal
  93. *
  94. * </ini>
  95. */
  96. #define CFG_ASSOC_FAILURE_TIMEOUT CFG_INI_UINT( \
  97. "assoc_failure_timeout", \
  98. 500, \
  99. 3000, \
  100. 2000, \
  101. CFG_VALUE_OR_DEFAULT, \
  102. "assoc failure timeout")
  103. /*
  104. * <ini>
  105. * reassoc_failure_timeout - Re-Assoc failure timeout value
  106. * @Min: 0
  107. * @Max: 65535
  108. * @Default: 1000
  109. *
  110. * This cfg is used to configure the re-assoc failure timeout.
  111. *
  112. * Usage: Internal
  113. *
  114. * </ini>
  115. */
  116. #define CFG_REASSOC_FAILURE_TIMEOUT CFG_INI_UINT( \
  117. "reassoc_failure_timeout", \
  118. 0, \
  119. 65535, \
  120. 1000, \
  121. CFG_VALUE_OR_DEFAULT, \
  122. "reassoc failure timeout")
  123. /*
  124. * <ini>
  125. * probe_after_hb_fail_timeout - Probe after HB failure timeout value
  126. * @Min: 10
  127. * @Max: 10000
  128. * @Default: 70
  129. *
  130. * This cfg is used to configure the Probe after HB failure timeout.
  131. *
  132. * Usage: Internal
  133. *
  134. * </ini>
  135. */
  136. #define CFG_PROBE_AFTER_HB_FAIL_TIMEOUT CFG_INI_UINT( \
  137. "probe_after_hb_fail_timeout", \
  138. 10, \
  139. 10000, \
  140. 70, \
  141. CFG_VALUE_OR_DEFAULT, \
  142. "probe after HB fail timeout")
  143. /*
  144. * <ini>
  145. * olbc_detect_timeout - olbc detect timeout value
  146. * @Min: 1000
  147. * @Max: 30000
  148. * @Default: 10000
  149. *
  150. * This cfg is used to configure the olbc detect timeout.
  151. *
  152. * Usage: Internal
  153. *
  154. * </ini>
  155. */
  156. #define CFG_OLBC_DETECT_TIMEOUT CFG_INI_UINT( \
  157. "olbc_detect_timeout", \
  158. 1000, \
  159. 30000, \
  160. 10000, \
  161. CFG_VALUE_OR_DEFAULT, \
  162. "OLBC detect timeout")
  163. /*
  164. * <ini>
  165. * addts_rsp_timeout - addts response timeout value
  166. * @Min: 0
  167. * @Max: 65535
  168. * @Default: 1000
  169. *
  170. * This cfg is used to configure the addts response timeout.
  171. *
  172. * Usage: Internal
  173. *
  174. * </ini>
  175. */
  176. #define CFG_ADDTS_RSP_TIMEOUT CFG_INI_UINT( \
  177. "addts_rsp_timeout", \
  178. 0, \
  179. 65535, \
  180. 1000, \
  181. CFG_VALUE_OR_DEFAULT, \
  182. "ADDTS RSP timeout")
  183. /*
  184. * <ini>
  185. * gHeartbeat24 - Heart beat threashold value
  186. * @Min: 0
  187. * @Max: 65535
  188. * @Default: 40
  189. *
  190. * This cfg is used to configure the Heart beat threashold.
  191. *
  192. * Usage: Internal/External
  193. *
  194. * </ini>
  195. */
  196. #define CFG_HEART_BEAT_THRESHOLD CFG_INI_UINT( \
  197. "gHeartbeat24", \
  198. 0, \
  199. 65535, \
  200. 40, \
  201. CFG_VALUE_OR_DEFAULT, \
  202. "Heart beat threashold")
  203. /*
  204. * <ini>
  205. * gApKeepAlivePeriod - AP keep alive period
  206. * @Min: 1
  207. * @Max: 65535
  208. * @Default: 20
  209. *
  210. * This ini is used to set keep alive period(in seconds) of AP
  211. *
  212. * Related: None.
  213. *
  214. * Supported Feature: SAP
  215. *
  216. * Usage: Internal/External
  217. *
  218. * </ini>
  219. */
  220. #define CFG_AP_KEEP_ALIVE_TIMEOUT CFG_INI_UINT( \
  221. "gApKeepAlivePeriod", \
  222. 1, \
  223. 65535, \
  224. 20, \
  225. CFG_VALUE_OR_DEFAULT, \
  226. "AP keep alive timeout")
  227. /*
  228. * <ini>
  229. * gApLinkMonitorPeriod - AP keep alive period
  230. * @Min: 3
  231. * @Max: 50
  232. * @Default: 10
  233. *
  234. * This ini is used to configure AP link monitor timeout value
  235. *
  236. * Related: None.
  237. *
  238. * Supported Feature: SAP
  239. *
  240. * Usage: Internal/External
  241. *
  242. * </ini>
  243. */
  244. #define CFG_AP_LINK_MONITOR_TIMEOUT CFG_INI_UINT( \
  245. "gApLinkMonitorPeriod", \
  246. 3, \
  247. 50, \
  248. 10, \
  249. CFG_VALUE_OR_DEFAULT, \
  250. "AP link monitor timeout")
  251. /*
  252. * <ini>
  253. * wmi_wq_watchdog - Sets timeout period for wmi watchdog bite.
  254. * @Min: 0
  255. * @Max: 30
  256. * @Default: 20
  257. *
  258. * This ini is used to set timeout period for wmi watchdog bite. If it is
  259. * 0 then wmi watchdog bite is disabled.
  260. *
  261. * Related: None
  262. *
  263. * Supported Feature: STA
  264. *
  265. * Usage: External
  266. *
  267. * </ini>
  268. */
  269. #define CFG_WMI_WQ_WATCHDOG CFG_INI_UINT( \
  270. "wmi_wq_watchdog", \
  271. 0, \
  272. 30, \
  273. 20, \
  274. CFG_VALUE_OR_DEFAULT, \
  275. "timeout period for wmi watchdog bite")
  276. /*
  277. * <ini>
  278. * sae_auth_failure_timeout - SAE Auth failure timeout value in msec
  279. * @Min: 500
  280. * @Max: 1000
  281. * @Default: 1000
  282. *
  283. * This cfg is used to configure the SAE auth failure timeout.
  284. *
  285. * Usage: External
  286. *
  287. * </ini>
  288. */
  289. #define CFG_SAE_AUTH_FAILURE_TIMEOUT CFG_INI_UINT( \
  290. "sae_auth_failure_timeout", \
  291. 500, \
  292. 1000, \
  293. 1000, \
  294. CFG_VALUE_OR_DEFAULT, \
  295. "SAE auth failure timeout")
  296. #define CFG_TIMEOUT_ALL \
  297. CFG(CFG_JOIN_FAILURE_TIMEOUT) \
  298. CFG(CFG_AUTH_FAILURE_TIMEOUT) \
  299. CFG(CFG_AUTH_RSP_TIMEOUT) \
  300. CFG(CFG_ASSOC_FAILURE_TIMEOUT) \
  301. CFG(CFG_REASSOC_FAILURE_TIMEOUT) \
  302. CFG(CFG_PROBE_AFTER_HB_FAIL_TIMEOUT) \
  303. CFG(CFG_OLBC_DETECT_TIMEOUT) \
  304. CFG(CFG_ADDTS_RSP_TIMEOUT) \
  305. CFG(CFG_HEART_BEAT_THRESHOLD) \
  306. CFG(CFG_AP_KEEP_ALIVE_TIMEOUT) \
  307. CFG(CFG_AP_LINK_MONITOR_TIMEOUT) \
  308. CFG(CFG_WMI_WQ_WATCHDOG) \
  309. CFG(CFG_SAE_AUTH_FAILURE_TIMEOUT)
  310. #endif /* __CFG_MLME_TIMEOUT_H */