专注收集记录技术开发学习笔记、技术难点、解决方案
网站信息搜索 >> 请输入关键词:
您当前的位置: 首页 > Iphone

如何样能获取ipad的mac地址

发布时间:2010-05-30 01:09:14 文章来源:www.iduyao.cn 采编人员:星星草
怎么样能获取ipad的mac地址?
怎么样能获取ipad的mac地址?

------解决方案--------------------
#import <sys/socket.h> // Per msqr 
#import <sys/sysctl.h> 
#import <net/if.h> 
#import <net/if_dl.h>

#include <arpa/inet.h>
#include <netdb.h>

#include <net/if.h>

#include <ifaddrs.h>
#import <dlfcn.h>

+(NSString *) macaddress 

int mib[6]; 
size_t len; 
char *buf; 
unsigned char *ptr; 
struct if_msghdr *ifm; 
struct sockaddr_dl *sdl; 

mib[0] = CTL_NET; 
mib[1] = AF_ROUTE; 
mib[2] = 0; 
mib[3] = AF_LINK; 
mib[4] = NET_RT_IFLIST; 

if ((mib[5] = if_nametoindex("en0")) == 0) { 
printf("Error: if_nametoindex errorn"); 
return NULL; 


if (sysctl(mib, 6, NULL, &len, NULL, 0) < 0) { 
printf("Error: sysctl, take 1n"); 
return NULL; 


if ((buf = (char *)malloc(len)) == NULL) { 
printf("Could not allocate memory. error!n"); 
return NULL; 


if (sysctl(mib, 6, buf, &len, NULL, 0) < 0) { 
printf("Error: sysctl, take 2"); 
return NULL; 


ifm = (struct if_msghdr *)buf; 
sdl = (struct sockaddr_dl *)(ifm + 1); 
ptr = (unsigned char *)LLADDR(sdl); 
NSString *outstring = [NSString stringWithFormat:@"%02x-%02x-%02x-%02x-%02x-%02x", *ptr, *(ptr+1), *(ptr+2), *(ptr+3), *(ptr+4), *(ptr+5)]; 
// NSString *outstring = [NSString stringWithFormat:@"%02x%02x%02x%02x%02x%02x", *ptr, *(ptr+1), *(ptr+2), *(ptr+3), *(ptr+4), *(ptr+5)]; 
// NSString *outstring = [NSString stringWithFormat:@"11-22-37-44-65-77"]; 
free(buf); 
return [outstring uppercaseString]; 
}
友情提示:
信息收集于互联网,如果您发现错误或造成侵权,请及时通知本站更正或删除,具体联系方式见页面底部联系我们,谢谢。

其他相似内容:

热门推荐: