Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting an IOException when I write to a TCP socket. This doesn't happen on lan. Am i writing too much to quickly? Does w which is a BinaryWriter to the TcpClient NetworkStream not block? How do i push out data on a tcpclient connection?

w.Write((byte)Commands.update);
w.Write(filelen);
var amount=0;
var b = new byte[1024 * 16];
while (amount < filelen)
{
    var l = f.Read(b, 0, b.Length);
    w.Write(b, 0, l);
    amount += l;
}
share|improve this question
2  
What are the details of the IOException (call ToString() on the exception and add to your question)? – Jon B Nov 6 '12 at 16:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.