Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Dec 1998 11:36:51 +0300 (MSK)
From:      "Andrew Vasilyev" <andy@kremvax.demos.su>
To:        Don.Lewis@tsc.tdk.com (Don Lewis)
Cc:        scrappy@hub.org, kondou@nec.co.jp, freebsd-hackers@FreeBSD.ORG, inn-workers@isc.org
Subject:   Re: innstat problem still exists...
Message-ID:  <199812150836.LAA07459@kremvax.demos.su>
In-Reply-To: <199812150456.UAA28495@salsa.gv.tsc.tdk.com> from "Don Lewis" at "Dec 14, 98 08:56:22 pm"

next in thread | previous in thread | raw e-mail | index | archive | help
> } > On Thu, 16 Oct 1997, Andrew Vasilyev wrote:
> } ...
> } > >   Change MIN_BUFFER_SIZE in lib/inndcomm.c to something bigger
> } > >   (I've made it 32K) and recompile ctlinnd.

  Another place to fix is cc.c::CCsetup(). You should add:

{
  int i = 128 * 1024;
  setsockopt(CCwriter, SOL_SOCKET, SO_SNDBUF, (caddr_t)&i, sizeof(i));
}

  after creating the CCwriter socket. I think the idea is clear enough - or
  send a patch? :)))
________
	ANDY


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-hackers" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199812150836.LAA07459>