From be41590cac32e25a7bbee9967e31855b037b4463 Mon Sep 17 00:00:00 2001 From: skotlex Date: Tue, 5 Dec 2006 17:09:02 +0000 Subject: - Fixed sc data load failing when using charsave_method: 1 - Fixed the interserver link reserve size being 8 times instead of 1/8th the default size. Changed it to be 1/4th as well. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9411 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/common/socket.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/common') diff --git a/src/common/socket.c b/src/common/socket.c index 4651f1dac..bedad4ed0 100644 --- a/src/common/socket.c +++ b/src/common/socket.c @@ -709,8 +709,8 @@ int WFIFOSET(int fd,int len) s->wdata_size += len; // always keep a wfifo_size reserve in the buffer - // For inter-server connections, let the reserve be 1/8th of the link size. - newreserve = s->wdata_size + (s->max_wdata>=FIFOSIZE_SERVERLINK?FIFOSIZE_SERVERLINK<<3:wfifo_size); + // For inter-server connections, let the reserve be 1/4th of the link size. + newreserve = s->wdata_size + (s->max_wdata>=FIFOSIZE_SERVERLINK?FIFOSIZE_SERVERLINK/4:wfifo_size); if(s->wdata_size >= frame_size) send_from_fifo(fd); -- cgit v1.2.3-70-g09d2