Disable Nagle Algorithmus with TCP_NODELAY on WinCE6
- From: Ebi <eberhard.voigt@xxxxxxx>
- Date: Tue, 27 May 2008 07:09:04 -0700 (PDT)
Hi,
I want to disable the Nagle algorithm for small data packets, but
setting TCP_NODELAY has no effect.
SOCKET s = socket (AF_BT, SOCK_STREAM, BTHPROTO_RFCOMM);
....
connect (s, (SOCKADDR *)&sa, sizeof(sa));
....
int nNoDelay = 1;
if(0 != setsockopt(s,IPPROTO_TCP,TCP_NODELAY,(char *)
&nNoDelay,sizeof(nNoDelay)))
wprintf (L"Nagle for Socket not set\n");
Has anybody the same effect or a solution for that?
Regards
Ebi
.
- Prev by Date: Re: Plan to build a CE6 Boot loader for S3C2440 platform
- Next by Date: Re: 4 Level Grayscale support in WinCE 5.0
- Previous by thread: Re: Plan to build a CE6 Boot loader for S3C2440 platform
- Next by thread: Re: 4 Level Grayscale support in WinCE 5.0
- Index(es):