Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iphone get 3G DNS host name and ip address

Tags:

iphone

dns

Is it possible in Objective C / C / C++ to get the current DNS server ip address for 3G / Cell data connection?

Looked around and could not find definitive answer.

like image 488
ort11 Avatar asked Dec 06 '22 14:12

ort11


1 Answers

#include <arpa/inet.h>
#include <ifaddrs.h>
#include <resolv.h>
#include <dns.h>

// 
- (NSString *) getDNSServers 
{
    NSMutableString *addresses = [[NSMutableString alloc]initWithString:@"DNS Addresses \n"];

    res_state res = malloc(sizeof(struct __res_state));

    int result = res_ninit(res);

    if ( result == 0 )
    {    
        for ( int i = 0; i < res->nscount; i++ )
        {
            NSString *s = [NSString stringWithUTF8String :  inet_ntoa(res->nsaddr_list[i].sin_addr)];
            [addresses appendFormat:@"%@\n",s];
            NSLog(@"%@",s);
        }
    }
    else 
        [addresses appendString:@" res_init result != 0"];

    return addresses;
    }
like image 174
ort11 Avatar answered Dec 26 '22 09:12

ort11