VirtualBox

Changeset 49114 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Oct 15, 2013 9:40:09 AM (11 years ago)
Author:
vboxsync
Message:

NetworkServices: coding style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageNATNetwork.cpp

    r48950 r49114  
    8585typedef struct PFNAME2DELETE
    8686{
    87     char aszName[PF_NAMELEN];
     87    char szName[PF_NAMELEN];
    8888    bool fIPv6;
    8989} PFNAME2DELETE, *PPFNAME2DELETE;
     
    246246
    247247                    RT_ZERO(Name2Delete);
    248                     RTStrCopy(Name2Delete.aszName, PF_NAMELEN, NamePf2DeleteUnion.psz);
     248                    RTStrCopy(Name2Delete.szName, PF_NAMELEN, NamePf2DeleteUnion.psz);
    249249                    Name2Delete.fIPv6 = (c == 'P');
    250250
     
    348348                {
    349349                    CHECK_ERROR(net, RemovePortForwardRule((BOOL)(*it).fIPv6,
    350                                                            Bstr((*it).aszName).raw()));
     350                                                           Bstr((*it).szName).raw()));
    351351                    if (FAILED(rc))
    352352                        return errorArgument("Failed to delete pf");
     
    368368
    369369                    CHECK_ERROR(net, AddPortForwardRule((BOOL)(*it).fPfrIPv6,
    370                                                         Bstr((*it).aszPfrName).raw(),
     370                                                        Bstr((*it).szPfrName).raw(),
    371371                                                        proto,
    372                                                         Bstr((*it).aszPfrHostAddr).raw(),
     372                                                        Bstr((*it).szPfrHostAddr).raw(),
    373373                                                        (*it).u16PfrHostPort,
    374                                                         Bstr((*it).aszPfrGuestAddr).raw(),
     374                                                        Bstr((*it).szPfrGuestAddr).raw(),
    375375                                                        (*it).u16PfrGuestPort));
    376376                    if (FAILED(rc))
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