Kconfig.projbuild 921 B

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