我已经搜索了该主题,但是发现很少有有用的细节。通过这些详细信息,我尝试按以下方式编写一些代码。
注意:在将其标记为DUPLICATE之前,不仅要按主题,还请比较此帖子中共享的详细信息与其他帖子。
- (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
和中获得WiFi使用率ifi_ipackets
。
还想补充一点,如果我连接到WiFi网络,但不使用互联网,我仍然会为ifi_obytes
和增值ifi_ibytes
。
可能是我在执行或理解上不对。需要有人帮助我。
编辑:而不是AF_LINK
我尝试了AF_INET
(sockaddr_in
而不是sockaddr_dl
)。这会使应用程序崩溃。