iPhone上的负值数据使用情况?

时间:2014-09-25 11:22:56

标签: ios iphone

我使用以下方法检查我的用户数据消费,取自here。它大部分时间都运行良好,但对于某些用户来说,它会返回负值。换句话说,WWANReceived是否定的。

怎么会这样?有修复吗?

+ (NSArray *)getDataCounters {

    BOOL   success;
    struct ifaddrs *addrs;
    const struct ifaddrs *cursor;
    const struct if_data *networkStatisc;

    int WiFiSent = 0;
    int WiFiReceived = 0;
    int WWANSent = 0;
    int WWANReceived = 0;

    NSString *name = [[NSString alloc]init];

    // getifmaddrs
    success = getifaddrs(&addrs) == 0;
    if (success)
    {
        cursor = addrs;
        while (cursor != NULL)
    {
        name = [NSString stringWithFormat:@"%s",cursor->ifa_name];
        // names of interfaces: en0 is WiFi ,pdp_ip0 is WWAN

        if (cursor->ifa_addr->sa_family == AF_LINK)
        {
            if ([name hasPrefix:@"en"])
            {
                networkStatisc = (const struct if_data *) cursor->ifa_data;
                WiFiSent += networkStatisc->ifi_obytes;
                WiFiReceived += networkStatisc->ifi_ibytes;
            }

            if ([name hasPrefix:@"pdp_ip"])
            {
                networkStatisc = (const struct if_data *) cursor->ifa_data;
                WWANSent += networkStatisc->ifi_obytes;
                WWANReceived += networkStatisc->ifi_ibytes;
            }
        }

        cursor = cursor->ifa_next;
      }

        freeifaddrs(addrs);
    }

    return [NSArray arrayWithObjects:[NSNumber numberWithInt:WiFiSent], [NSNumber numberWithInt:WiFiReceived],[NSNumber numberWithInt:WWANSent],[NSNumber numberWithInt:WWANReceived], nil];
}

1 个答案:

答案 0 :(得分:3)

也许你已经解决了这个问题,我只是测试了同样的例子并且发现了这个。

您必须将类型从int更改为long long以处理更大的值。你看到的是2GB流量后发生的整数溢出。