diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-15 21:02:03 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-15 21:02:03 +0000 |
commit | fae8d448b6e93740db3711cd5b9130bb4f303104 (patch) | |
tree | b84b9581135fe07986256bb23cb18b4f2590bb47 /include/socket.h | |
parent | ab2c48b5c1dc2da0ef220c90446f32f15c2284fd (diff) |
Bigger read buffers on ibuf
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2495 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/socket.h')
-rw-r--r-- | include/socket.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/socket.h b/include/socket.h index 90793f2f3..c56494c01 100644 --- a/include/socket.h +++ b/include/socket.h @@ -99,11 +99,11 @@ private: /** * Socket input buffer, used by read(). The class which * extends InspSocket is expected to implement an extendable - * buffer which can grow much larger than 16k, + * buffer which can grow much larger than 64k, * this buffer is just designed to be temporary storage. * space. */ - char ibuf[16384]; + char ibuf[65535]; /** * The output buffer for this socket |