Kconfig.projbuild 950 B

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "Example Configuration"
  2. config EXAMPLE_IPV4
  3. bool "IPV4"
  4. default y
  5. depends on LWIP_IPV4
  6. config EXAMPLE_IPV6
  7. bool "IPV6"
  8. default n
  9. select EXAMPLE_CONNECT_IPV6
  10. config EXAMPLE_PORT
  11. int "Port"
  12. range 0 65535
  13. default 3333
  14. help
  15. Local port the example server will listen on.
  16. config EXAMPLE_KEEPALIVE_IDLE
  17. int "TCP keep-alive idle time(s)"
  18. default 5
  19. help
  20. Keep-alive idle time. In idle time without receiving any data from peer, will send keep-alive probe packet
  21. config EXAMPLE_KEEPALIVE_INTERVAL
  22. int "TCP keep-alive interval time(s)"
  23. default 5
  24. help
  25. Keep-alive probe packet interval time.
  26. config EXAMPLE_KEEPALIVE_COUNT
  27. int "TCP keep-alive packet retry send counts"
  28. default 3
  29. help
  30. Keep-alive probe packet retry count.
  31. endmenu