From 5ef3e3e2158c8c65c1d76feaa5e62a60ad4dd8d3 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 30 May 2016 11:52:07 -0600 Subject: [PATCH] Replace confusing references to uIP with just 'the network' --- COPYING | 2 +- Documentation/NuttxPortingGuide.html | 3 +- Documentation/NuttxUserGuide.html | 5 +- arch/README.txt | 209 ++++++------------ arch/hc/src/m9s12/m9s12_ethernet.c | 19 +- arch/mips/src/pic32mx/pic32mx-ethernet.c | 25 ++- arch/mips/src/pic32mz/pic32mz-ethernet.c | 25 ++- arch/z80/src/ez80/ez80_emac.c | 19 +- configs/dk-tm4c129x/src/tm4c_ethernet.c | 2 +- configs/eagle100/src/lm_ethernet.c | 2 +- configs/ekk-lm3s9b96/src/lm_ethernet.c | 2 +- configs/lm3s6432-s2e/src/lm_ethernet.c | 2 +- configs/lm3s6965-ek/src/lm_ethernet.c | 2 +- configs/lm3s8962-ek/src/lm_ethernet.c | 2 +- .../tm4c1294-launchpad/src/tm4c_ethernet.c | 2 +- libc/netdb/lib_dnsquery.c | 4 +- 16 files changed, 126 insertions(+), 199 deletions(-) diff --git a/COPYING b/COPYING index 1c82d0ca20..a8113ab027 100644 --- a/COPYING +++ b/COPYING @@ -93,7 +93,7 @@ has a similar BSD style license: IGMP ^^^^ -IGMP support, if enabled in uIP, adds additional logic by Steve Reynolds: +IGMP support, if enabled, adds additional logic by Steve Reynolds: Copyright (c) 2002 CITEL Technologies Ltd. All rights reserved. diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index ff3990c9d9..9fc2e5e9e2 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -4901,8 +4901,7 @@ int kbd_decode(FAR struct lib_instream_s *stream, FAR struct kbd_getstate_s *sta

include/nuttx/net/netdev.h. All structures and APIs needed to work with Ethernet drivers are provided in this header file. - The structure struct net_driver_s defines the interface and is passed to uIP via - netdev_register(). + The structure struct net_driver_s defines the interface and is passed to the network via netdev_register().

  • diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html index a91959e198..3766eba646 100644 --- a/Documentation/NuttxUserGuide.html +++ b/Documentation/NuttxUserGuide.html @@ -8755,9 +8755,8 @@ FAR void *mmap(FAR void *start, size_t length, int prot, int flags, int fd, off_

    - NuttX includes a simple interface layer based on uIP (see http://www.sics.se). - NuttX supports subset of a standard socket interface to uIP. - These network feature can be enabled by settings in the architecture configuration file. + NuttX supports a BSD-compatible socket interface layer. + These socket interface can be enabled by settings in the architecture configuration file. Those socket APIs are discussed in the following paragraphs.