You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
482 B
22 lines
482 B
// |
|
// AlicloudHTTPDNSMini.h |
|
// AlicloudUtils |
|
// |
|
// Created by ryan on 3/6/2016. |
|
// Copyright © 2016 Ali. All rights reserved. |
|
// |
|
|
|
#ifndef AlicloudHTTPDNSMini_h |
|
#define AlicloudHTTPDNSMini_h |
|
|
|
#define HTTPDNSMINI_RESOLVED_NOTIFY @"HTTPDNSMiniResolvedNotify" |
|
|
|
@interface AlicloudHTTPDNSMini : NSObject |
|
|
|
+ (AlicloudHTTPDNSMini *)sharedInstance; |
|
- (NSArray *)getIpsByHostAsync:(NSString *)host; |
|
- (void)setPreResolveHosts:(NSArray *)hosts; |
|
|
|
@end |
|
|
|
#endif /* AlicloudHTTPDNSMini_h */
|
|
|