FMIceLinkDns Class Reference

Inherits from NSObject
Declared in FMIceLinkDns.h
FMIceLinkDns.m

Overview

DNS utility methods.

+ resolveWithName:

Resolves a host name to an IP address.
+ (FMIceLinkFuture *)resolveWithName:(NSString *)name

Parameters

name

The name to resolve.

Discussion

Resolves a host name to an IP address.

Declared In

FMIceLinkDns.h

+ resolveWithName:callback:state:

Resolves a host name to an IP address.
+ (void)resolveWithName:(NSString *)name callback:(FMIceLinkAction2 *)callback state:(id)state

Parameters

name

The name to resolve.

callback

The callback to invoke when resolution is complete.

state

A custom state object to pass into the callback.

Discussion

Resolves a host name to an IP address.

Declared In

FMIceLinkDns.h

+ resolveWithName:callbackBlock:state:

Resolves a host name to an IP address.
+ (void)resolveWithName:(NSString *)name callbackBlock:(void ( ^ ) ( NSMutableArray *, id ))callbackBlock state:(id)state

Parameters

name

The name to resolve.

callbackBlock

The callback to invoke when resolution is complete.

state

A custom state object to pass into the callback.

Discussion

Resolves a host name to an IP address.

Declared In

FMIceLinkDns.h

+ resolveWithNameAndCallbackBlockAndState

Resolves a host name to an IP address.

@inlineparam name The name to resolve. @inlineparam callbackBlock The callback to invoke when resolution is complete. @inlineparam state A custom state object to pass into the callback.

+ (void ( ^ ) ( NSString *, void ( ^ ) ( NSMutableArray *, id ) , id ))resolveWithNameAndCallbackBlockAndState

Discussion

Resolves a host name to an IP address.

@inlineparam name The name to resolve. @inlineparam callbackBlock The callback to invoke when resolution is complete. @inlineparam state A custom state object to pass into the callback.

Declared In

FMIceLinkDns.h