Software / code / prosody
Comparison
net/server_epoll.lua @ 11671:4e4e26e3df8d
net.server_epoll: Fix typo
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Tue, 13 Jul 2021 02:05:35 +0200 |
| parent | 11665:148075532021 |
| child | 11672:79f8e29e88a0 |
comparison
equal
deleted
inserted
replaced
| 11670:7f6c816a2c09 | 11671:4e4e26e3df8d |
|---|---|
| 52 tcp_backlog = 128; | 52 tcp_backlog = 128; |
| 53 | 53 |
| 54 -- If accepting a new incoming connection fails, wait this long before trying again | 54 -- If accepting a new incoming connection fails, wait this long before trying again |
| 55 accept_retry_interval = 10; | 55 accept_retry_interval = 10; |
| 56 | 56 |
| 57 -- If there is still more data to read from LuaSocktes buffer, wait this long and read again | 57 -- If there is still more data to read from LuaSockets buffer, wait this long and read again |
| 58 read_retry_delay = 1e-06; | 58 read_retry_delay = 1e-06; |
| 59 | 59 |
| 60 -- Size of chunks to read from sockets | 60 -- Size of chunks to read from sockets |
| 61 read_size = 8192; | 61 read_size = 8192; |
| 62 | 62 |