summaryrefslogtreecommitdiff
path: root/apps/netutils/xmlrpc/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'apps/netutils/xmlrpc/Kconfig')
-rw-r--r--apps/netutils/xmlrpc/Kconfig23
1 files changed, 23 insertions, 0 deletions
diff --git a/apps/netutils/xmlrpc/Kconfig b/apps/netutils/xmlrpc/Kconfig
new file mode 100644
index 000000000..6765bda07
--- /dev/null
+++ b/apps/netutils/xmlrpc/Kconfig
@@ -0,0 +1,23 @@
+#
+# 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