mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-29 03:30:36 +08:00
cc0c42dd31
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5150 7fd9a85b-ad96-42d3-883c-3090e2eb8679
24 lines
551 B
Plaintext
24 lines
551 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see misc/tools/kconfig-language.txt.
|
|
#
|
|
|
|
config NETUTILS_XMLRPC
|
|
bool "XML RPC library"
|
|
default n
|
|
depends on NET_TCP
|
|
select NETUTILS_UIPLIB
|
|
---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
|