Enable RFC1323 on a per socket basis in Windows?

Posted by Sheado on Stack Overflow See other posts from Stack Overflow or by Sheado
Published on 2010-03-30T19:09:12Z Indexed on 2010/03/30 19:13 UTC
Read the original article Hit count: 286

Filed under:
|
|
|

Howdy..

Anybody know if it's possible to enable RFC1323 on a per TCP socket basis in windows?

I know it can be changed system wide via the registry ( http://www.psc.edu/networking/projects/tcptune/OStune/winxp/winxp_stepbystep.html )

Also, it seems like this is possible *nix via:

int on=1; 
setsockopt(s,IPPROTO_TCP,TCP_RFC1323,&on,sizeof(on));

Is there a Windows equivalent?

Thanky much!

© Stack Overflow or respective owner

Related posts about tcp

Related posts about rfc