vote up 0 vote down star
1

Does anyone knows how can i detect from an app the DNS of the iPhone?

UPDATE: If there're different ways of obtaining the DNS server and DNS host name, any solution is acceptable.

flag

1  
What do you mean by "the DNS"? The DNS host name of the iPhone? The DNS server that the iPhone is using? – D.Shawley Oct 24 at 18:25

1 Answer

vote up 1 vote down check

To get the host name you can use libc API, gethostname:

#import <unistd.h>

...

char hostname[HOST_NAME_MAX];
int err = gethostname(hostname, HOST_NAME_MAX);
if(!err)
    NSLog(@"My hostname is %s", hostname);
link|flag
Well, that's not the best option. – mxg Oct 28 at 16:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.