¡@

Home 

c# Programming Glossary: nodelay

Socket “Flush” by temporarily enabling NoDelay

http://stackoverflow.com/questions/5523565/socket-flush-by-temporarily-enabling-nodelay

&ldquo Flush&rdquo by temporarily enabling NoDelay Background I have an implementation of an HTTP server in C#... used in the TCP stack. TCP Flush So far I am using the NoDelay property in the end of every HTTP request served. socket.NoDelay.. property in the end of every HTTP request served. socket.NoDelay true socket.NoDelay false Which does solve the problem for now...