summaryrefslogtreecommitdiff
path: root/nuttx/netutils/README
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-08-06 16:14:02 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-08-06 16:14:02 +0000
commit0975e289539bfd54489dd72949e85c83e2d0e324 (patch)
tree93f6710c9b92f88741a0fac278d46207e8078f0c /nuttx/netutils/README
parent958240f1221c7457a12a55223c0e59295ee309c2 (diff)
downloadpx4-nuttx-0975e289539bfd54489dd72949e85c83e2d0e324.tar.gz
px4-nuttx-0975e289539bfd54489dd72949e85c83e2d0e324.tar.bz2
px4-nuttx-0975e289539bfd54489dd72949e85c83e2d0e324.zip
DHCP-related documentation updates/warning fixes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2824 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/netutils/README')
-rw-r--r--nuttx/netutils/README15
1 files changed, 15 insertions, 0 deletions
diff --git a/nuttx/netutils/README b/nuttx/netutils/README
index a28270715..e4b05eb21 100644
--- a/nuttx/netutils/README
+++ b/nuttx/netutils/README
@@ -13,6 +13,9 @@ include:
webclient - HTTP web client
webserver - HTTP web server
+You may find additional information on these apps in the uIP forum
+accessible through: http://www.sics.se/~adam/uip/index.php/Main_Page
+
Additional applications that were not part of uIP (but which are
highly influenced by uIP) include:
@@ -21,4 +24,16 @@ highly influenced by uIP) include:
thttpd - This is a port of Jef Poskanzer's THTTPD HTPPD server.
See http://acme.com/software/thttpd/.
+If you use DHCPC/D, then some special configuration network options are
+required. These include:
+ CONFIG_NET=y Of course
+ CONFIG_NSOCKET_DESCRIPTORS And, of course, you must allocate some
+ socket descriptors.
+ CONFIG_NET_UDP=y UDP support is required for DHCP
+ (as well as various other UDP-related
+ configuration settings).
+ CONFIG_NET_BROADCAST=y UDP broadcast support is needed.
+ CONFIG_NET_BUFSIZE=650 The client must be prepared to receive
+ (or larger) DHCP messages of up to 576 bytes (excluding
+ Ethernet, IP, or UDP headers and FCS).