[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: socket losing data
From: |
address@hidden |
Subject: |
Re: socket losing data |
Date: |
Fri, 2 May 2008 11:47:55 -0700 (PDT) |
User-agent: |
G2/1.0 |
I would try
[fileHandle synchronizeFile];
which should "push" all internal buffers to the network (but does NOT
denote end of data to the peer - so the peer TCP/IP stack may buffer
and NOT deliver to its application).
and
[fileHandle closeFile];
which is described to notify end of communication.
-- hns