The cfreadstream tag has no wiki summary.
0
votes
0answers
32 views
Subclassing NSInputStream to upload a particular portion of data from a local filepath
I am having a 100 MB of data in a single file. This 100 mb data will be divided virtually. i.e., I need to create an NSInputStream which points to different 5MB chunks.
This is possible by creating ...
0
votes
0answers
109 views
Is it possible to make multiple CFHTTPMessage requests on a single connection?
Background
Currently, I'm making use of CoreFoundation (CFHTTPMessage, CFReadStream) in order to communicate with a service. The client periodically asks the service for more data through an http ...
0
votes
0answers
462 views
iOS voip socket not detecting networking change in background mode?
I'm also facing same problem. but in my case everything is working fine, unless network changes happen. I used apple "reachability" class to detect network changes. if the app is in background upto ...
1
vote
0answers
134 views
VPN blocking incoming reads CFReadStreamRef iOS
CFReadStreamRef used in CFStream connection to websocket.
Properties set:
// Ensure the CF & BSD socket is closed when the streams are closed.
CFReadStreamSetProperty(theReadStream, ...
1
vote
0answers
69 views
Do I need to close stream if I didn't correctly open it?
Do I need to close stream if I didn't correctly open it?
if (!CFReadStreamOpen(stream))
{
//Do I need to add
//CFReadStreamClose(stream)
CFRelease(stream);
stream = ...
0
votes
1answer
1k views
CFStream IOS Socket communication
how can i clear an CFStream buffer?
Everytime i read from socket there is still data from an old request, i mean complete response to an old request not just a fragment of it.
Am i missing ...
0
votes
1answer
323 views
i386 symbols not found
Am getting this error, when using CFReadStreamRef
Undefined symbols for architecture i386:
"_CFReadStreamCreateWithFTPURL", referenced from:
-[FtpTestViewController clickMeToStart:] in ...
14
votes
5answers
9k views
iOS Voip Socket will not run in background
I am getting a VOIP socket to run in the background in an iOS application.
My connection works fine, but it won't wake up when my app goes into the background. If I open the app back up, though, it ...
1
vote
2answers
1k views
Get file size on FTP download
im testing around with the "SimpleFTPSample" project from apple to understand how ftp with iOS works. i have added two lines in the "GetController.m" to get the size of the file to download.
...
-1
votes
1answer
2k views
iPhone data transfer using CFReadStream & CFWriteStream (bonjour)
I am able to send data upto 20 KB from one Mac to another using iPhone Simulators successfully.However for data larger than that it is not able to send.Even fragmenting data doesnot work. Help...
-2
votes
1answer
275 views
how to extract only the 1st 2 bytes of data from CFReadStream in Objective-C for iPhone programming
1) How to read the data from read stream in Objective-C,
Below code would give me how many bytes are read from stream, but how to know what data is read from stream?
CFIndex cf = ...
0
votes
1answer
356 views
get the file size of a CFHTTPStream
How to get a file size of a CFHTTPStream. Suppose a file called "http://testserver.com/test.jpg " is available to read. Here I need to get the file size "test.jpg", this I need to display progress ...
0
votes
1answer
816 views
How do I enable more handshake ciphers in CFStream?
When running the method:
CFReadStreamSetProperty(theReadStream, kCFStreamPropertySSLSettings (CFDictionaryRef)tlsPacket->tlsSettings);
To secure the connection of a CFReadStream, my iphone ...