Merge pull request #633 from Xertis/dev

Make Nagle's algorithm configurable
This commit is contained in:
MihailRis
2025-10-01 01:29:49 +03:00
committed by GitHub
5 changed files with 50 additions and 0 deletions
+6
View File
@@ -93,6 +93,12 @@ socket:is_connected() --> bool
-- Возвращает адрес и порт соединения.
socket:get_address() --> str, int
-- Возвращает состояние NoDelay
socket:is_nodelay() --> bool
-- Устанавливает состояние NoDelay
socket:set_nodelay(state: bool)
```
```lua