2012-04-06 18:33:17 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:14:53 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 18:33:17 +02:00
|
|
|
#
|
2012-04-14 22:01:08 +02:00
|
|
|
|
|
|
|
config NETUTILS_WEBCLIENT
|
|
|
|
bool "uIP web client"
|
|
|
|
default n
|
2015-03-29 23:52:46 +02:00
|
|
|
depends on NET_TCP
|
2015-07-12 17:25:39 +02:00
|
|
|
select LIBC_NETDB
|
2019-02-24 20:54:33 +01:00
|
|
|
select NET_SOCKOPTS
|
2020-05-25 16:22:55 +02:00
|
|
|
select NETUTILS_NETLIB_GENERICURLPARSER
|
2012-04-14 22:01:08 +02:00
|
|
|
---help---
|
|
|
|
Enable support for the uIP web client.
|
|
|
|
|
|
|
|
if NETUTILS_WEBCLIENT
|
2012-11-03 01:00:56 +01:00
|
|
|
|
|
|
|
config NSH_WGET_USERAGENT
|
2014-09-30 01:10:49 +02:00
|
|
|
string "wget User Agent"
|
2012-11-03 01:00:56 +01:00
|
|
|
default "NuttX/6.xx.x (; http://www.nuttx.org/)"
|
|
|
|
|
2014-09-30 01:10:49 +02:00
|
|
|
config WEBCLIENT_TIMEOUT
|
|
|
|
int "Request and receive timeouts"
|
|
|
|
default 10
|
|
|
|
|
2012-04-14 22:01:08 +02:00
|
|
|
endif
|