From 37ba8bd9b756933deb4351b4c0b96d9793722370 Mon Sep 17 00:00:00 2001 From: patacongo Date: Thu, 22 Nov 2007 18:36:46 +0000 Subject: [PATCH] TCP and ICMP protocols may now be disabled git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@398 42af7a65-404d-4744-a932-0658087f49c3 --- Documentation/NuttX.html | 1 + Documentation/NuttxPortingGuide.html | 20 +++++++++++++------- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index f024189e0a..77cdee1f74 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -708,6 +708,7 @@ Other memory: * Add TX notification to driver so that it can respond faster to the availability of TX data. * Moved urgent data info into device structure. + * TCP and ICMP protocols can now be disabled. diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 98af10dae7..afe1aafa32 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -1352,24 +1352,27 @@ The system can be re-made subsequently by just typing make.
  • CONFIG_NSOCKET_DESCRIPTORS: Maximum number of socket descriptors per task/thread.
  • -
  • - CONFIG_NET_TCP_CONNS: Maximum number of TCP connections (all tasks). -
  • -
  • - CONFIG_NET_MAX_LISTENPORTS: Maximum number of listening TCP ports (all tasks). -
  • CONFIG_NET_SOCKOPTS: Enable or disable support for socket options.
  • CONFIG_NET_BUFSIZE: uIP buffer size
  • +
  • + CONFIG_NET_TCP: TCP support on or off +
  • +
  • + CONFIG_NET_TCP_CONNS: Maximum number of TCP connections (all tasks). +
  • CONFIG_NET_TCP_READAHEAD_BUFSIZE: Size of TCP read-ahead buffers
  • CONFIG_NET_NTCP_READAHEAD_BUFFERS: Number of TCP read-ahead buffers (may be zero)
  • +
  • + CONFIG_NET_MAX_LISTENPORTS: Maximum number of listening TCP ports (all tasks). +
  • CONFIG_NET_TCPURGDATA: Determines if support for TCP urgent data notification should be compiled in. Urgent data (out-of-band data) @@ -1385,11 +1388,14 @@ The system can be re-made subsequently by just typing make. CONFIG_NET_UDP_CONNS: The maximum amount of concurrent UDP connections
  • - CONFIG_NET_STATISTICS: uIP statistics on or off + CONFIG_NET_ICMP: ICMP ping support on or off
  • CONFIG_NET_PINGADDRCONF: Use "ping" packet for setting IP address
  • +
  • + CONFIG_NET_STATISTICS: uIP statistics on or off +
  • CONFIG_NET_RECEIVE_WINDOW: The size of the advertised receiver's window