Michael Lindner wrote:
>[...]
> send(s, ".", 1, 0);
>[...]
> while (select(r+1, &readfds, 0, 0, 0) > 0) {
>[...]
>[select returns only after about 1 HZ]
Ever heard of nagle? (If not, there's a long thread about
it on the mailing list *g*)
It's not the select that waits. It's a delay in the tcp send
path waiting for more data. Try disabling it:
int f=1;
setsockopt(s, SOL_TCP, TCP_NODELAY, &f, sizeof(f));
Ciao, ET.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/
- Re: PROBLEM: select() on TCP socket sleeps for 1 tick ... Michael Lindner
- Re: PROBLEM: select() on TCP socket sleeps for 1 ... Michael Lindner
- Re: PROBLEM: select() on TCP socket sleeps fo... Edgar Toernig
- Re: PROBLEM: select() on TCP socket sleep... Dan Maas
- Re: PROBLEM: select() on TCP socket s... Michael Lindner
- RE: PROBLEM: select() on TCP soc... David Schwartz
- Re: PROBLEM: select() on TCP socket s... Michael Lindner
- Re: PROBLEM: select() on TCP soc... Stephen D. Williams
- Re: PROBLEM: select() on TCP... James Antill
- Re: PROBLEM: select() on... Stephen D. Williams
- Re: PROBLEM: select() on... James Antill
- Re: PROBLEM: select() on... Stephen D. Williams
- Re: PROBLEM: select() on... James Antill

