mirror of
https://github.com/apache/nuttx.git
synced 2026-08-10 23:15:15 +00:00
Add split package logic to improve TCP send performance with delayed ACKs
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5538 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
078fa7fe00
commit
7fedd35660
1 changed files with 14 additions and 0 deletions
|
|
@ -193,6 +193,10 @@ CONFIG_NET_PRIORITY=0
|
|||
# USB host driver options
|
||||
#
|
||||
|
||||
#
|
||||
# External Memory Configuration
|
||||
#
|
||||
|
||||
#
|
||||
# Architecture Options
|
||||
#
|
||||
|
|
@ -396,6 +400,10 @@ CONFIG_NET_NACTIVESOCKETS=16
|
|||
CONFIG_NET_SOCKOPTS=y
|
||||
CONFIG_NET_BUFSIZE=562
|
||||
# CONFIG_NET_TCPURGDATA is not set
|
||||
|
||||
#
|
||||
# TCP/IP Networking
|
||||
#
|
||||
CONFIG_NET_TCP=y
|
||||
CONFIG_NET_TCP_CONNS=8
|
||||
CONFIG_NET_MAX_LISTENPORTS=8
|
||||
|
|
@ -403,6 +411,12 @@ CONFIG_NET_TCP_READAHEAD_BUFSIZE=562
|
|||
CONFIG_NET_NTCP_READAHEAD_BUFFERS=16
|
||||
CONFIG_NET_TCP_RECVDELAY=0
|
||||
# CONFIG_NET_TCPBACKLOG is not set
|
||||
CONFIG_NET_TCP_SPLIT=y
|
||||
CONFIG_NET_TCP_SPLIT_SIZE=40
|
||||
|
||||
#
|
||||
# UDP Networking
|
||||
#
|
||||
CONFIG_NET_UDP=y
|
||||
CONFIG_NET_UDP_CHECKSUMS=y
|
||||
CONFIG_NET_UDP_CONNS=8
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue