Return true to stop the engine from disconnecting the client.
Example
Example on how to handle a overflow
hook.Add("HolyLib:OnChannelOverflow", "Example", function(client)
local bf = client:GetStreamReliable()
file.Write("stream.txt", bf:GetData())
bf:Reset() -- Reset the stream, data may get lost, but the client won't be dropped
returntrue-- Return true to stop the engine from disconnecting the client
end)