Modify tcp buffer config

This commit is contained in:
turtled 2018-02-24 09:15:18 +08:00
parent a864aa9743
commit 91b64813fa
1 changed files with 3 additions and 3 deletions

View File

@ -783,21 +783,21 @@ listener.tcp.external.send_timeout_close = on
## See: listener.tcp.<name>.recbuf ## See: listener.tcp.<name>.recbuf
## ##
## Value: Bytes ## Value: Bytes
## listener.tcp.internal.recbuf = 4KB ## listener.tcp.internal.recbuf = 16KB
## The TCP send buffer(os kernel) for internal MQTT connections. ## The TCP send buffer(os kernel) for internal MQTT connections.
## ##
## See: http://erlang.org/doc/man/inet.html ## See: http://erlang.org/doc/man/inet.html
## ##
## Value: Bytes ## Value: Bytes
## listener.tcp.internal.sndbuf = 4KB ## listener.tcp.internal.sndbuf = 16KB
## The size of the user-level software buffer used by the driver. ## The size of the user-level software buffer used by the driver.
## ##
## See: listener.tcp.<name>.buffer ## See: listener.tcp.<name>.buffer
## ##
## Value: Bytes ## Value: Bytes
## listener.tcp.internal.buffer = 4KB ## listener.tcp.internal.buffer = 16KB
## Sets the 'buffer = max(sndbuf, recbuf)' if this option is enabled. ## Sets the 'buffer = max(sndbuf, recbuf)' if this option is enabled.
## ##