2012-09-14 14:07:21 +00:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 08:14:53 -06:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-09-14 14:07:21 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
config NETUTILS_XMLRPC
|
|
|
|
bool "XML RPC library"
|
|
|
|
default n
|
|
|
|
depends on NET_TCP
|
2014-07-02 16:04:25 -06:00
|
|
|
select NETUTILS_NETLIB
|
2012-09-14 14:07:21 +00:00
|
|
|
---help---
|
|
|
|
Enables the Embeddable Lightweight XML-RPC Server discussed at
|
|
|
|
http://www.drdobbs.com/web-development/an-embeddable-lightweight-xml-rpc-server/184405364
|
|
|
|
|
|
|
|
if NETUTILS_XMLRPC
|
|
|
|
|
|
|
|
config XMLRPC_STRINGSIZE
|
|
|
|
int "Maximum string length"
|
|
|
|
default 64
|
|
|
|
---help---
|
|
|
|
Maximum string length for method names and XML RPC string values.
|
|
|
|
|
|
|
|
endif
|