9
0
Fork 0
nuttx-bb/nuttx/netutils
patacongo 38fa0c6df4 Lease time is now in host order
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@2839 7fd9a85b-ad96-42d3-883c-3090e2eb8679
2010-08-10 16:39:34 +00:00
..
dhcpc Lease time is now in host order 2010-08-10 16:39:34 +00:00
dhcpd Changing NuttX fixed size type names to C99 standard names -- things will be broken for awhile 2009-12-15 16:37:20 +00:00
resolv Changing NuttX fixed size type names to C99 standard names -- things will be broken for awhile 2009-12-15 16:37:20 +00:00
smtp Changing NuttX fixed size type names to C99 standard names -- things will be broken for awhile 2009-12-15 16:37:20 +00:00
telnetd Changing NuttX fixed size type names to C99 standard names -- things will be broken for awhile 2009-12-15 16:37:20 +00:00
tftpc Changing NuttX fixed size type names to C99 standard names -- things will be broken for awhile 2009-12-15 16:37:20 +00:00
thttpd cosmetic 2009-12-20 14:54:51 +00:00
uiplib IGMP debug fixes 2010-07-13 03:43:06 +00:00
webclient Changing NuttX fixed size type names to C99 standard names -- things will be broken for awhile 2009-12-15 16:37:20 +00:00
webserver Changing NuttX fixed size type names to C99 standard names -- things will be broken for awhile 2009-12-15 16:37:20 +00:00
Makefile Add framework for THTTPD example 2009-07-18 19:47:08 +00:00
README DHCP-related documentation updates/warning fixes 2010-08-06 16:14:02 +00:00

README

netutils
^^^^^^^^

This directory contains most of the network applications contained
under the uIP-1.0 apps directory.  As the uIP apps/README says,
these applications "are not all heavily tested."  These uIP apps
include:

  dhcpc     - Dynamic Host Configuration Protocol (DHCP) client
  resolv    - uIP DNS resolver
  smtp      - Simple Mail Transfer Protocol (SMTP) client
  telnetd   - TELNET server
  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:

  dhcpd     - Dynamic Host Configuration Protocol (DHCP) server
  tftpc     - TFTP client
  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).