CoreNetworking
CoreNetworking copied to clipboard
Simple set up for building Objective-C network clients and servers, includes a simple HTTP server out of the box.
_Original author: [email protected] (May 03, 2009 22:55:47)_ What is the expected output? What do you see instead? from AFConnectionServer.m: # warning this class should also provide the ability to listen...
I think that currently if no data arrives on the stream, and the packet isn’t started then the timeout isn’t started. The idle timeout for a packet should be started...
_Original author: [email protected] (August 30, 2009 14:39:00)_ - (AFInternetTransportSignature)transportSignatureForScheme:(NSString *)scheme { #warning this method should parse /etc/services to determine the default port mappings } _Original issue: http://code.google.com/p/amber-framework/issues/detail?id=30_
Currently connections received by the HTTP server are kept around indefinitely and aren’t closed after a time out
_Original author: [email protected] (February 23, 2010 10:17:56)_ This will remove the need for a client t schedule them in a serial queue. _Original issue: http://code.google.com/p/amber-framework/issues/detail?id=34_
If NAT-PMP is enabled for a listen socket, when the socket is retrieved from accept() we should return the external address from that socket’s `-[AFNetworkSocket localAddress]`
This should be a member of the AFNetworkURLConnection class cluster for http[s] scheme URLs and implement these behaviours - Authentication - [ ] Basic http://tools.ietf.org/html/rfc2617#section-2 - [ ] Digest http://tools.ietf.org/html/rfc2617#section-3...
_Original author: [email protected] (March 05, 2012 14:27:36)_ Currently there isn't any special handling _Original issue: http://code.google.com/p/amber-framework/issues/detail?id=59_
_Original author: [email protected] (February 08, 2012 19:42:11)_ This one needs to be researched, I suspect it does. _Original issue: http://code.google.com/p/amber-framework/issues/detail?id=57_
_Original author: [email protected] (February 08, 2012 19:13:38)_ Check that this packet closes its secondary stream under success, error, and deallocation conditions. We shouldn't hold the file open unnecessarily. _Original issue:...