このトピックを検索しましたが、役立つ詳細はほとんど見つかりませんでした。これらの詳細を使用して、次のようにいくつかのコードを作成しようとしました。
注:この投稿で共有されている詳細を他の投稿と比較してから、件名だけでなく、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
)。これにより、アプリケーションがクラッシュします。