Skip to content

Instantly share code, notes, and snippets.

@vclwei
Last active December 18, 2015 02:29
Show Gist options
  • Save vclwei/5711804 to your computer and use it in GitHub Desktop.
Save vclwei/5711804 to your computer and use it in GitHub Desktop.
Get iOS Device MacAddress
+ (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 error\n");
return @"-1";
}
if (sysctl(mib, 6, NULL, &len, NULL, 0) < 0) {
printf("Error: sysctl, take 1\n");
return @"-1";
}
if ((buf = malloc(len)) == NULL) {
printf("Could not allocate memory. error!\n");
return @"-1";
}
if (sysctl(mib, 6, buf, &len, NULL, 0) < 0) {
free(buf);
printf("Error: sysctl, take 2");
return @"-1";
}
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)];
free(buf);
return outstring;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment