VirtualBox

Ignore:
Timestamp:
Nov 29, 2012 8:58:17 AM (12 years ago)
Author:
vboxsync
Message:

Main/Metrics: Do not collect data for unplugged host interfaces (#6345)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/linux/NetIf-linux.cpp

    r43668 r43994  
    170170                fclose(fp);
    171171            }
     172            if (pInfo->uSpeedMbits == 10)
     173            {
     174                /* Check the cable is plugged in at all */
     175                unsigned uCarrier = 0;
     176                RTStrPrintf(szBuf, sizeof(szBuf), "/sys/class/net/%s/carrier", pszName);
     177                fp = fopen(szBuf, "r");
     178                if (fp)
     179                {
     180                    if (fscanf(fp, "%u", &uCarrier) != 1 || uCarrier == 0)
     181                        pInfo->uSpeedMbits = 0;
     182                    fclose(fp);
     183                }
     184            }
     185
    172186            if (pInfo->uSpeedMbits == 0)
    173187            {
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette