diff --git a/ChangeLog b/ChangeLog index 79919b917c8..95acb0450b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2526,4 +2526,6 @@ low level, thread-independent socket interfaces for use within the OS. Some of these are currently used by the FTP controlling terminal. More will be used to support the NFS file system currenly underwork. - + * include/nuttx/net/: Major re-organization of networking headerf files. + Moved all non-standard, NuttX-specific header files from include/net and + include/nuttx into include/nuttx/net. diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 1966409a601..f99cf45ad71 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -12,7 +12,7 @@

NuttX RTOS Porting Guide

-

Last Updated: February 28, 2011

+

Last Updated: March 3, 2011

@@ -1113,12 +1113,12 @@ include/ | `-- (Standard header files) |-- cxx/ | `-- (C++ standard header files) -|-- net/ -| `-- uip/ -| `-- (uIP specific header files) |-- netinet/ | `-- (Standard header files) |-- nuttx/ +| |-net/ +| | `-- uip/ +| | `-- (uIP specific header files) | `-- (NuttX specific header files) `- sys/ `-- (More standard header files) @@ -1185,7 +1185,7 @@ lib/

2.12 nuttx/net

- This directory contains the implementation of the socket APIs. + This directory contains the implementation of the NuttX internal socket APIs. The subdirectory, uip contains the uIP port.

@@ -2424,7 +2424,7 @@ extern void up_ledoff(int led);