Kconfig.civetweb 471 B

12345678910111213
  1. # Copyright (c) 2019 Antmicro Ltd
  2. # SPDX-License-Identifier: Apache-2.0
  3. config CIVETWEB
  4. bool "Civetweb Support"
  5. # The CONFIG_NET_TCP_ISN_RFC6528 option would pull in mbedtls,
  6. # and there are include file issues if CONFIG_POSIX_API is set.
  7. # Because Civetweb sets the POSIX API option in the samples,
  8. # make sure that we do not try to use Civetweb if the TCP ISN
  9. # option is set.
  10. depends on !NET_TCP_ISN_RFC6528
  11. help
  12. This option enables the civetweb HTTP API.