Merge pull request #558 from rastersize/fix-upload-stream-delay-type

Fix type discrepancy for upload stream delay.
This commit is contained in:
Mattt Thompson 2012-10-04 14:45:14 -07:00
commit 79f743c319
2 changed files with 2 additions and 2 deletions

View file

@ -500,7 +500,7 @@ extern NSString * const AFNetworkingReachabilityNotificationStatusItem;
#pragma mark - #pragma mark -
extern NSUInteger const kAFUploadStream3GSuggestedPacketSize; extern NSUInteger const kAFUploadStream3GSuggestedPacketSize;
extern NSUInteger const kAFUploadStream3GSuggestedDelay; extern NSTimeInterval const kAFUploadStream3GSuggestedDelay;
/** /**
The `AFMultipartFormData` protocol defines the methods supported by the parameter in the block argument of `AFHTTPClient -multipartFormRequestWithMethod:path:parameters:constructingBodyWithBlock:`. The `AFMultipartFormData` protocol defines the methods supported by the parameter in the block argument of `AFHTTPClient -multipartFormRequestWithMethod:path:parameters:constructingBodyWithBlock:`.

View file

@ -717,7 +717,7 @@ static inline NSString * AFContentTypeForPathExtension(NSString *extension) {
} }
NSUInteger const kAFUploadStream3GSuggestedPacketSize = 1024 * 16; NSUInteger const kAFUploadStream3GSuggestedPacketSize = 1024 * 16;
NSUInteger const kAFUploadStream3GSuggestedDelay = 0.2; NSTimeInterval const kAFUploadStream3GSuggestedDelay = 0.2;
@interface AFHTTPBodyPart : NSObject @interface AFHTTPBodyPart : NSObject