mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Make running out of buffer space a fatal error
Prevent Bad Things from happening when the buffer gets full. This of course opens up the possibility of intentionally killing connections by sending much stuff, which need to be mitigated with rate limits elsewhere.
This commit is contained in:
parent
693079c619
commit
52178d7430
1 changed files with 6 additions and 0 deletions
|
@ -612,6 +612,8 @@ function interface:write(data)
|
|||
-- Try to flush buffer to make room
|
||||
self:onwritable();
|
||||
if not buffer:write(prev_buffer) then
|
||||
self:on("disconnect", "no space left in buffer");
|
||||
self:destroy();
|
||||
return false;
|
||||
end
|
||||
end
|
||||
|
@ -622,6 +624,8 @@ function interface:write(data)
|
|||
end
|
||||
self:onwritable();
|
||||
if not buffer:write(data) then
|
||||
self:on("disconnect", "no space left in buffer");
|
||||
self:destroy();
|
||||
return false;
|
||||
end
|
||||
end
|
||||
|
@ -631,6 +635,8 @@ function interface:write(data)
|
|||
end
|
||||
self:onwritable();
|
||||
if not buffer:write(data) then
|
||||
self:on("disconnect", "no space left in buffer");
|
||||
self:destroy();
|
||||
return false;
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue