VirtualBox

Changeset 28296 in vbox


Ignore:
Timestamp:
Apr 14, 2010 12:11:07 PM (15 years ago)
Author:
vboxsync
Message:

Main: cosmetical fixes, mostly spaces

Location:
trunk/src/VBox/Main
Files:
6 edited

Legend:

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

    r28290 r28296  
    26732673            hrc = natDriver->COMGETTER(Redirects)(ComSafeArrayAsOutParam(pfs)); H();
    26742674            PCFGMNODE pPF = NULL;          /* /Devices/Dev/.../Config/PF#0/ */
    2675             for(unsigned int i = 0; i < pfs.size(); ++i)
     2675            for (unsigned int i = 0; i < pfs.size(); ++i)
    26762676            {
    26772677                uint16_t port = 0;
  • trunk/src/VBox/Main/DHCPServerRunner.cpp

    r26186 r28296  
    5858{
    5959    for (unsigned i = 0; i < RT_ELEMENTS(g_aArgDefs); i++)
    60         if(g_aArgDefs[i].Type == type)
     60        if (g_aArgDefs[i].Type == type)
    6161            return &g_aArgDefs[i];
    6262
     
    140140bool DHCPServerRunner::isRunning()
    141141{
    142     if(mProcess == NIL_RTPROCESS)
     142    if (mProcess == NIL_RTPROCESS)
    143143        return false;
    144144
     
    146146    int rc = RTProcWait(mProcess, RTPROCWAIT_FLAGS_NOBLOCK, &status);
    147147
    148     if(rc == VERR_PROCESS_RUNNING)
     148    if (rc == VERR_PROCESS_RUNNING)
    149149        return true;
    150150
  • trunk/src/VBox/Main/HostImpl.cpp

    r28036 r28296  
    442442    hr = pncc->GetDisplayName( &lpszName );
    443443    Assert(hr == S_OK);
    444     if(hr == S_OK)
     444    if (hr == S_OK)
    445445    {
    446446        Bstr name((CBSTR)lpszName);
     
    631631                       &lpszApp );
    632632    Assert(hr == S_OK);
    633     if(hr == S_OK)
     633    if (hr == S_OK)
    634634    {
    635635#    ifdef VBOX_NETFLT_ONDEMAND_BIND
     
    640640        hr = pNc->FindComponent(L"sun_VBoxNetFlt", &pTcpIpNcc);
    641641#     ifndef VBOX_WITH_HARDENING
    642         if(hr != S_OK)
     642        if (hr != S_OK)
    643643        {
    644644            /* TODO: try to install the netflt from here */
     
    648648#    endif
    649649
    650         if(hr == S_OK)
     650        if (hr == S_OK)
    651651        {
    652652            hr = VBoxNetCfgWinGetBindingPathEnum(pTcpIpNcc, EBP_BELOW, &pEnumBp);
     
    659659                {
    660660                    /* S_OK == enabled, S_FALSE == disabled */
    661                     if(pBp->IsEnabled() == S_OK)
     661                    if (pBp->IsEnabled() == S_OK)
    662662                    {
    663663                        hr = VBoxNetCfgWinGetBindingInterfaceEnum(pBp, &pEnumBi);
     
    671671                                hr = pBi->GetLowerComponent( &pMpNcc );
    672672                                Assert(hr == S_OK);
    673                                 if(hr == S_OK)
     673                                if (hr == S_OK)
    674674                                {
    675675                                    ULONG uComponentStatus;
    676676                                    hr = pMpNcc->GetDeviceStatus(&uComponentStatus);
    677677                                    Assert(hr == S_OK);
    678                                     if(hr == S_OK)
     678                                    if (hr == S_OK)
    679679                                    {
    680                                         if(uComponentStatus == 0)
     680                                        if (uComponentStatus == 0)
    681681                                        {
    682682                                            vboxNetWinAddComponent(&list, pMpNcc);
     
    14111411    std::list <ComObjPtr<HostNetworkInterface> > allList;
    14121412    int rc = NetIfList(allList);
    1413     if(RT_FAILURE(rc))
     1413    if (RT_FAILURE(rc))
    14141414        return E_FAIL;
    14151415
     
    14211421        HostNetworkInterfaceType_T t;
    14221422        HRESULT hr = (*it)->COMGETTER(InterfaceType)(&t);
    1423         if(FAILED(hr))
     1423        if (FAILED(hr))
    14241424            return hr;
    14251425
    1426         if(t == type)
     1426        if (t == type)
    14271427        {
    14281428            (*it)->setVirtualBox(m->pParent);
  • trunk/src/VBox/Main/HostNetworkInterfaceImpl.cpp

    r27607 r28296  
    9292    NETIFINFO info;
    9393    int rc = NetIfGetConfig(this, &info);
    94     if(RT_SUCCESS(rc))
     94    if (RT_SUCCESS(rc))
    9595    {
    9696        m.realIPAddress = m.IPAddress = info.IPAddress.u;
     
    236236#endif
    237237    char *addr = inet_ntoa(tmp);
    238     if(addr)
     238    if (addr)
    239239    {
    240240        Bstr(addr).detachTo(aIPAddress);
     
    271271#endif
    272272    char *addr = inet_ntoa(tmp);
    273     if(addr)
     273    if (addr)
    274274    {
    275275        Bstr(addr).detachTo(aNetworkMask);
     
    443443    ULONG ip, mask;
    444444    ip = inet_addr(Utf8Str(aIPAddress).raw());
    445     if(ip != INADDR_NONE)
     445    if (ip != INADDR_NONE)
    446446    {
    447447        if (Bstr(aNetMask).isEmpty())
     
    449449        else
    450450            mask = inet_addr(Utf8Str(aNetMask).raw());
    451         if(mask != INADDR_NONE)
     451        if (mask != INADDR_NONE)
    452452        {
    453453            if (m.realIPAddress == ip && m.realNetworkMask == mask)
  • trunk/src/VBox/Main/linux/PerformanceLinux.cpp

    r27950 r28296  
    7575
    7676    std::vector<RTPROCESS>::iterator it;
    77     for(it = processes.begin(); it != processes.end(); it++)
     77    for (it = processes.begin(); it != processes.end(); it++)
    7878    {
    7979        VMProcessStats vmStats;
  • trunk/src/VBox/Main/xml/Settings.cpp

    r28295 r28296  
    18341834        if (llNetworkModes.size() > 2)
    18351835        {
    1836             throw ConfigFileError(this, pelmAdapter, N_("Invalid number of modes '%d' attached to Adapter attribute"), llNetworkModes.size());
     1836            throw ConfigFileError(this, pelmAdapter, N_("Invalid number of modes ('%d') attached to Adapter attribute"), llNetworkModes.size());
    18371837        }
    18381838        for (it = llNetworkModes.begin(); it != llNetworkModes.end(); ++it)
     
    18451845                pelmNode->getChildElements(llDisabledNetworkModes);
    18461846                /* run over disabled list and load settings */
    1847                 for(itDisabled = llDisabledNetworkModes.begin(); itDisabled != llDisabledNetworkModes.end(); ++itDisabled)
     1847                for (itDisabled = llDisabledNetworkModes.begin();
     1848                     itDisabled != llDisabledNetworkModes.end(); ++itDisabled)
    18481849                {
    18491850                    const xml::ElementNode *pelmDisabledNode = *itDisabled;
     
    18651866    {
    18661867        if (fEnabled)
    1867         {
    18681868            nic.mode = NetworkAttachmentType_NAT;
    1869         }
    1870         nic.fHasDisabledNAT = (nic.mode != NetworkAttachmentType_NAT) && !fEnabled;
     1869
     1870        nic.fHasDisabledNAT = (nic.mode != NetworkAttachmentType_NAT && !fEnabled);
    18711871        elmMode.getAttributeValue("network", nic.nat.strNetwork);    // optional network name
    18721872        elmMode.getAttributeValue("hostip", nic.nat.strBindIP);
     
    18921892        xml::ElementNodesList plstNatPF;
    18931893        elmMode.getChildElements(plstNatPF, "Forwarding");
    1894         for(xml::ElementNodesList::iterator pf = plstNatPF.begin(); pf != plstNatPF.end(); ++pf)
     1894        for (xml::ElementNodesList::iterator pf = plstNatPF.begin(); pf != plstNatPF.end(); ++pf)
    18951895        {
    18961896            NATRule rule;
     
    19071907        }
    19081908    }
    1909     else if (    fEnabled
    1910               && (   (elmMode.nameEquals("HostInterface"))
    1911                   || (elmMode.nameEquals("BridgedInterface")))
     1909    else if (   fEnabled
     1910             && (   (elmMode.nameEquals("HostInterface"))
     1911                 || (elmMode.nameEquals("BridgedInterface")))
    19121912            )
    19131913    {
     
    19221922            throw ConfigFileError(this, &elmMode, N_("Required InternalNetwork/@name element is missing"));
    19231923    }
    1924     else if (    fEnabled
    1925               && elmMode.nameEquals("HostOnlyInterface"))
     1924    else if (   fEnabled
     1925             && elmMode.nameEquals("HostOnlyInterface"))
    19261926    {
    19271927        nic.mode = NetworkAttachmentType_HostOnly;
     
    35463546}
    35473547
    3548 void MachineConfigFile::buildNetworkXML(NetworkAttachmentType_T mode, xml::ElementNode &elmParent, const NetworkAdapter &nic)
     3548/**
     3549 * Fill a <Network> node. Only relevant for XML version >= v1_10.
     3550 * @param mode
     3551 * @param elmParent
     3552 * @param nice
     3553 */
     3554void MachineConfigFile::buildNetworkXML(NetworkAttachmentType_T mode,
     3555                                        xml::ElementNode &elmParent,
     3556                                        const NetworkAdapter &nic)
    35493557{
    35503558    switch (mode)
     
    35843592                    pelmTFTP->setAttribute("next-server", nic.nat.strTftpNextServer);
    35853593            }
    3586             for(NATRuleList::const_iterator rule = nic.nat.llRules.begin();
     3594            for (NATRuleList::const_iterator rule = nic.nat.llRules.begin();
    35873595                    rule != nic.nat.llRules.end(); ++rule)
    35883596            {
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