Re: NAGLE commented

Alan Cox (alan@lxorguk.ukuu.org.uk)
Sat, 28 Jun 1997 00:04:39 +0100 (BST)


> What I did now is change telnetd to call (void) setsockopt(0, SOL_TCP,
> TCP_NODELAY, NULL, (int)NULL);
> but my knowledge of sockets is very small so I'm not sure this is the right
> way to do it.

It is a mix of Nagle and telnetd issues. Nagle isnt the major part. You
need to modify your "telnet" so an application that collects entire PPP
frames then does a single write() for the frame. This will keep things
somewhat happier.

Alan