arq_restore/http/HTTPTimeoutSetting.h
Stefan Reitshamer 40ef06c9d2 Switched from NSURLConnection API to CFHTTP API.
I made this switch in Arq 2.6.3 last March, and it has been much more stable.
2012-08-20 10:00:49 -04:00

16 lines
342 B
Objective-C

//
// HTTPTimeoutSetting.h
// Arq
//
// Created by Stefan Reitshamer on 4/6/12.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//
@interface HTTPTimeoutSetting : NSObject {
NSTimeInterval timeoutSeconds;
}
- (id)init;
- (id)initWithTimeoutSeconds:(NSTimeInterval)theTimeoutSeconds;
- (NSTimeInterval)timeoutSeconds;
@end