arq_restore/s3/RemoteS3Signer.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

20 lines
496 B
Objective-C

//
// RemoteS3Signer.h
// Arq
//
// Created by Stefan Reitshamer on 12/30/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "S3Signer.h"
@interface RemoteS3Signer : NSObject <S3Signer> {
NSString *accessKey;
NSURL *url;
NSString *account;
NSString *password;
}
+ (NSString *)errorDomain;
- (id)initWithAccessKey:(NSString *)theAccessKey url:(NSURL *)theURL account:(NSString *)theAccount password:(NSString *)thePassword;
@end