summaryrefslogtreecommitdiff
path: root/apps/netutils/codecs/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-31 14:36:00 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-31 14:36:00 +0000
commit608e5adab4915ada5c2881d66d20e3d6fa0efba5 (patch)
treebbc2662360f180653bb42c54b921dec07135b648 /apps/netutils/codecs/Kconfig
parent120fc05c1d11406857c6d245abe9a344dcaae268 (diff)
downloadnuttx-608e5adab4915ada5c2881d66d20e3d6fa0efba5.tar.gz
nuttx-608e5adab4915ada5c2881d66d20e3d6fa0efba5.tar.bz2
nuttx-608e5adab4915ada5c2881d66d20e3d6fa0efba5.zip
Add apps/netutils/codecs and associated NSH commands from Darcy Gong
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5280 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/netutils/codecs/Kconfig')
-rw-r--r--apps/netutils/codecs/Kconfig59
1 files changed, 59 insertions, 0 deletions
diff --git a/apps/netutils/codecs/Kconfig b/apps/netutils/codecs/Kconfig
new file mode 100644
index 000000000..5248f1d5d
--- /dev/null
+++ b/apps/netutils/codecs/Kconfig
@@ -0,0 +1,59 @@
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
+
+config NETUTILS_CODECS
+ bool "CODEC Library"
+ default n
+ ---help---
+ Enables the netutils/code library: Base64 coding, URL coding, MD5.
+
+if NETUTILS_CODECS
+
+config CODECS_BASE64
+ bool "Base 64 Support"
+ default n
+ ---help---
+ Enables support for the following interfaces: base64_encode(),
+ base64_decode(), base64w_encode(), and base64w_decode(),
+
+ Contributed NuttX by Darcy Gong.
+
+config CODECS_HASH_MD5
+ bool "MD5 Support"
+ default n
+ ---help---
+ Enables support for the following interfaces: MD5Init(),
+ MD5Update(), MD5Final(), MD5Transform(), md5_sum() and md5_hash()
+
+ Contributed NuttX by Darcy Gong.
+
+config CODECS_URLCODE
+ bool "URL Decode Support"
+ default n
+ ---help---
+ Enables support for the following interfaces: urlencode() and
+ urldecode()
+
+ Contributed NuttX by Darcy Gong.
+
+config CODECS_URLCODE_NEWMEMORY
+ bool "URL Allocating Decode Support"
+ default n
+ ---help---
+ Enables support for the following interfaces: url_encode() and
+ url_decode()
+
+ Contributed NuttX by Darcy Gong.
+
+config CODECS_AVR_URLCODE
+ bool "URL Raw Decode Support"
+ default n
+ ---help---
+ Enables support for the following interfaces: urlrawdecode() and
+ urlrawencode()
+
+ Contributed NuttX by Darcy Gong.
+
+endif