Kconfig.projbuild 358 B

12345678910111213141516171819
  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. endmenu