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;
}