最佳答案
我搜索了这个主题,但是发现很少有有用的细节。通过这些细节,我尝试编写一些代码,如下所示。
注意: 在标记为副本之前,请将本文中分享的细节与其他文章进行比较,而不仅仅是按主题分享。
- (NSArray *)getDataCountersForType:(int)type {
BOOL success;
struct ifaddrs *addrs = nil;
const struct ifaddrs *cursor = nil;
const struct sockaddr_dl *dlAddr = nil;
const struct if_data *networkStatisc = nil;
int dataSent = 0;
int dataReceived = 0;
success = getifaddrs(&addrs) == 0;
if (success) {
cursor = addrs;
while (cursor != NULL) {
if (cursor->ifa_addr->sa_family == AF_LINK) {
dlAddr = (const struct sockaddr_dl *) cursor->ifa_addr;
networkStatisc = (const struct if_data *) cursor->ifa_data;
if (type == WiFi) {
dataSent += networkStatisc->ifi_opackets;
dataReceived += networkStatisc->ifi_ipackets;
}
else if (type == WWAN) {
dataSent += networkStatisc->ifi_obytes;
dataReceived += networkStatisc->ifi_ibytes;
}
}
cursor = cursor->ifa_next;
}
freeifaddrs(addrs);
}
return [NSArray arrayWithObjects:[NSNumber numberWithInt:dataSent], [NSNumber numberWithInt:dataReceived], nil];
}
这段代码收集 iPhone 设备的互联网使用信息(不仅仅是我的应用程序)。
现在,如果我通过 WiFi 或3G 使用互联网,我只能得到 ifi_obytes
(发送)和 ifi_ibytes
(接收)中的数据(字节) ,但我认为我应该得到 ifi_opackets
和 ifi_ipackets
中的 WiFi 使用情况。
还想补充的是,如果我连接到一个 WiFi 网络,但不使用互联网,我仍然得到增值的 ifi_obytes
和 ifi_ibytes
。
可能是我在执行或理解上有错误。需要有人帮我解决。
编辑: 我尝试用 AF_INET
(sockaddr_in
而不是 sockaddr_dl
)代替 AF_LINK
,这会使应用程序崩溃。