Sha256: e67c453cfd3c0e4e5be8891d10dff3a45d006b8aac4e3b17dbadb9d2fe87e6ba
Contents?: true
Size: 425 Bytes
Versions: 5
Compression:
Stored size: 425 Bytes
Contents
#import <Foundation/Foundation.h> #import "HTTPResponse.h" @class HTTPConnection; @interface HTTPFileResponse : NSObject <HTTPResponse> { 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
Version data entries
5 entries across 5 versions & 2 rubygems