VirtualBox

Changeset 82132 in vbox for trunk/src/VBox/Main/src-client


Ignore:
Timestamp:
Nov 23, 2019 8:30:28 PM (5 years ago)
Author:
vboxsync
Message:

ConsoleImpl2.cpp: nits.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp

    r82080 r82132  
    24622462#endif /* VBOX_WITH_VIRTIO */
    24632463        std::list<BootNic> llBootNics;
    2464         for (ULONG ulInstance = 0; ulInstance < maxNetworkAdapters; ++ulInstance)
     2464        for (ULONG uInstance = 0; uInstance < maxNetworkAdapters; ++uInstance)
    24652465        {
    24662466            ComPtr<INetworkAdapter> networkAdapter;
    2467             hrc = pMachine->GetNetworkAdapter(ulInstance, networkAdapter.asOutParam());     H();
     2467            hrc = pMachine->GetNetworkAdapter(uInstance, networkAdapter.asOutParam());      H();
    24682468            BOOL fEnabledNetAdapter = FALSE;
    24692469            hrc = networkAdapter->COMGETTER(Enabled)(&fEnabledNetAdapter);                  H();
     
    24992499#endif /* VBOX_WITH_VIRTIO */
    25002500                default:
    2501                     AssertMsgFailed(("Invalid network adapter type '%d' for slot '%d'",
    2502                                     adapterType, ulInstance));
     2501                    AssertMsgFailed(("Invalid network adapter type '%d' for slot '%d'", adapterType, uInstance));
    25032502                    return VMR3SetError(pUVM, VERR_INVALID_PARAMETER, RT_SRC_POS,
    2504                                         N_("Invalid network adapter type '%d' for slot '%d'"),
    2505                                         adapterType, ulInstance);
    2506             }
    2507 
    2508             InsertConfigNode(pDev, Utf8StrFmt("%u", ulInstance).c_str(), &pInst);
     2503                                        N_("Invalid network adapter type '%d' for slot '%d'"), adapterType, uInstance);
     2504            }
     2505
     2506            InsertConfigNode(pDev, Utf8StrFmt("%u", uInstance).c_str(), &pInst);
    25092507            InsertConfigInteger(pInst, "Trusted",              1); /* boolean */
    25102508            /* the first network card gets the PCI ID 3, the next 3 gets 8..10,
    25112509             * next 4 get 16..19. */
    25122510            int iPCIDeviceNo;
    2513             switch (ulInstance)
     2511            switch (uInstance)
    25142512            {
    25152513                case 0:
     
    25172515                    break;
    25182516                case 1: case 2: case 3:
    2519                     iPCIDeviceNo = ulInstance - 1 + 8;
     2517                    iPCIDeviceNo = uInstance - 1 + 8;
    25202518                    break;
    25212519                case 4: case 5: case 6: case 7:
    2522                     iPCIDeviceNo = ulInstance - 4 + 16;
     2520                    iPCIDeviceNo = uInstance - 4 + 16;
    25232521                    break;
    25242522                default:
     
    25462544#ifdef VBOX_WITH_2X_4GB_ADDR_SPACE   /* not safe here yet. */ /** @todo Make PCNet ring-0 safe on 32-bit mac kernels! */
    25472545            if (pDev == pDevPCNet)
    2548             {
    25492546                InsertConfigInteger(pCfg, "R0Enabled",    false);
    2550             }
    25512547#endif
    25522548            /*
     
    25552551            BootNic     nic;
    25562552
    2557             nic.mInstance    = ulInstance;
     2553            nic.mInstance    = uInstance;
    25582554            /* Could be updated by reference, if auto assigned */
    25592555            nic.mPCIAddress  = PCIAddr;
     
    26362632             * Attach the status driver.
    26372633             */
    2638             i_attachStatusDriver(pInst, &mapNetworkLeds[ulInstance], 0, 0, NULL, NULL, 0);
     2634            i_attachStatusDriver(pInst, &mapNetworkLeds[uInstance], 0, 0, NULL, NULL, 0);
    26392635
    26402636            /*
     
    26432639            bool fIgnoreConnectFailure = mMachineState == MachineState_Restoring;
    26442640            rc = i_configNetwork(pszAdapterName,
    2645                                  ulInstance,
     2641                                 uInstance,
    26462642                                 0,
    26472643                                 networkAdapter,
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