summaryrefslogtreecommitdiff
path: root/nuttx/examples/nettest/nettest.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-11-16 18:48:39 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-11-16 18:48:39 +0000
commit66fa9eb830939b33a268b24573f9fdf59850dac5 (patch)
treef520073b0832172588d8021184f8833548e08d5b /nuttx/examples/nettest/nettest.h
parentd6100fb0fad57df531e0774793d188e899943852 (diff)
downloadpx4-nuttx-66fa9eb830939b33a268b24573f9fdf59850dac5.tar.gz
px4-nuttx-66fa9eb830939b33a268b24573f9fdf59850dac5.tar.bz2
px4-nuttx-66fa9eb830939b33a268b24573f9fdf59850dac5.zip
Basic server functionality: listen(), accept()
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@382 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/nettest/nettest.h')
-rw-r--r--nuttx/examples/nettest/nettest.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/examples/nettest/nettest.h b/nuttx/examples/nettest/nettest.h
index 9fe735911..eb7c83c84 100644
--- a/nuttx/examples/nettest/nettest.h
+++ b/nuttx/examples/nettest/nettest.h
@@ -40,7 +40,7 @@
* Included Files
****************************************************************************/
-#ifdef CONFIG_NETTEST_HOST
+#ifdef CONFIG_EXAMPLE_NETTEST_HOST
#else
# include <debug.h>
#endif
@@ -49,7 +49,7 @@
* Definitions
****************************************************************************/
-#ifdef CONFIG_NETTEST_HOST
+#ifdef CONFIG_EXAMPLE_NETTEST_HOST
/* HTONS/L macros are unique to uIP */
# define HTONS(a) htons(a)