mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-30 19:57:51 +02:00
12 lines
297 B
Objective-C
12 lines
297 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@class MTSignal;
|
|
|
|
@interface MTDNS : NSObject
|
|
|
|
+ (MTSignal *)resolveHostname:(NSString *)hostname;
|
|
+ (MTSignal *)resolveHostnameNative:(NSString *)hostname port:(int32_t)port;
|
|
+ (MTSignal *)resolveHostnameUniversal:(NSString *)hostname port:(int32_t)port;
|
|
|
|
@end
|