keithduncan / CoreNetworking

Simple set up for building Objective-C network clients and servers, includes a simple HTTP server out of the box.
BSD 3-Clause "New" or "Revised" License
19 stars 5 forks source link

Add a stream-to/from-disk packets #30

Closed keithduncan closed 11 years ago

keithduncan commented 11 years ago

Original author: keith.du...@gmail.com (September 02, 2009 18:41:38)

Two more common case packets, one which streams data into a cache file on disk. And one which streams data from a file over the network.

Original issue: http://code.google.com/p/amber-framework/issues/detail?id=31

keithduncan commented 11 years ago

From keith.du...@gmail.com on September 02, 2009 18:43:20 Add support for the HTTP connection to make an intelligent decision. Core Networking for iPhone OS should automatically stream large responses to disk.

The stream-from-disk packet should support ranges for a ranged HTTP response.

keithduncan commented 11 years ago

From keith.du...@gmail.com on September 02, 2009 18:44:03 See #25