From cf2027e03ad44e9b6712dc1b4e7b299fddc5fed4 Mon Sep 17 00:00:00 2001 From: patacongo Date: Thu, 22 Nov 2007 14:42:52 +0000 Subject: [PATCH] Add TX data notification git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@397 42af7a65-404d-4744-a932-0658087f49c3 --- Documentation/NuttX.html | 3 +++ Documentation/NuttxPortingGuide.html | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index 870918360ed..f024189e0aa 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -705,6 +705,9 @@ Other memory: * Integrated uIP micro webserver * Corrected a serious bug in TCP queue management * Fix leak in socket close logic + * Add TX notification to driver so that it can respond faster to + the availability of TX data. + * Moved urgent data info into device structure. diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index faf3c5f8901..98af10dae7e 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -1370,6 +1370,11 @@ The system can be re-made subsequently by just typing make.
  • CONFIG_NET_NTCP_READAHEAD_BUFFERS: Number of TCP read-ahead buffers (may be zero)
  • +
  • + CONFIG_NET_TCPURGDATA: Determines if support for TCP urgent data + notification should be compiled in. Urgent data (out-of-band data) + is a rarely used TCP feature that is very seldom would be required. +
  • CONFIG_NET_UDP: UDP support on or off