summaryrefslogtreecommitdiff
path: root/nuttx/net/tcp/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-06-23 19:25:16 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-06-23 19:25:16 -0600
commit9de1aa22302e1eae4e094794266ab83b5afb79f1 (patch)
tree86bca29bde64222bb7a6626757ca30066bf1447b /nuttx/net/tcp/Kconfig
parent753895c39d42d92cfdbedaf1a06c0daf7afee67e (diff)
downloadnuttx-9de1aa22302e1eae4e094794266ab83b5afb79f1.tar.gz
nuttx-9de1aa22302e1eae4e094794266ab83b5afb79f1.tar.bz2
nuttx-9de1aa22302e1eae4e094794266ab83b5afb79f1.zip
CONFIG_NET_PKT is compatible with current TCP writebuffering logic because the share too much code; move sending of packet socket data from net_send_unbufferer.c to a new uip/uip_pktsend.c file for consistency
Diffstat (limited to 'nuttx/net/tcp/Kconfig')
-rw-r--r--nuttx/net/tcp/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/nuttx/net/tcp/Kconfig b/nuttx/net/tcp/Kconfig
index 5989d3d90..d6237c35f 100644
--- a/nuttx/net/tcp/Kconfig
+++ b/nuttx/net/tcp/Kconfig
@@ -83,6 +83,7 @@ config NET_TCP_WRITE_BUFFERS
bool "Enable TCP/IP write buffering"
default n
select NET_IOB
+ depends on !NET_PKT
---help---
Write buffers allows buffering of ongoing TCP/IP packets, providing
for higher performance, streamed output.