#import #import "HTTPResponse.h" @class HTTPConnection; @interface HTTPFileResponse : NSObject { HTTPConnection *connection; NSString *filePath; UInt64 fileLength; UInt64 fileOffset; BOOL aborted; int fileFD; void *buffer; NSUInteger bufferSize; } - (id)initWithFilePath:(NSString *)filePath forConnection:(HTTPConnection *)connection; - (NSString *)filePath; @end