Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
1k 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
475 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. ...
0
votes
1answer
123 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
48 views

i386 symbols not found

Am getting this error, when using CFReadStreamRef Undefined symbols for architecture i386: "_CFReadStreamCreateWithFTPURL", referenced from: -[FtpTestViewController clickMeToStart:] in ...
0
votes
1answer
937 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...
0
votes
1answer
188 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
606 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 ...
-2
votes
1answer
143 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 = ...