VirtualBox

Changeset 33827 in vbox


Ignore:
Timestamp:
Nov 8, 2010 10:46:45 AM (14 years ago)
Author:
vboxsync
Message:

Main,xml: win build fix.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/settings.h

    r33661 r33827  
    358358 struct NATRule
    359359 {
    360      NATRule(): u32Proto(0),
     360     NATRule(): proto(NATProtocol_TCP),
    361361             u16HostPort(0),
    362362             u16GuestPort(0){}
    363363     com::Utf8Str            strName;
    364      uint32_t                u32Proto;
     364     NATProtocol_T           proto;
    365365     uint16_t                u16HostPort;
    366366     com::Utf8Str            strHostIP;
     
    370370    {
    371371        return    strName == r.strName
    372                && u32Proto == r.u32Proto
     372               && proto == r.proto
    373373               && u16HostPort == r.u16HostPort
    374374               && strHostIP == r.strHostIP
  • trunk/src/VBox/Main/NATEngineImpl.cpp

    r33825 r33827  
    246246        BstrFmt bstr("%s,%d,%s,%d,%s,%d",
    247247                     r.strName.c_str(),
    248                      r.u32Proto,
     248                     r.proto,
    249249                     r.strHostIP.c_str(),
    250250                     r.u16HostPort,
     
    283283        name = Utf8StrFmt("%s_%d_%d", proto, aHostPort, aGuestPort);
    284284    r.strName = name.c_str();
    285     r.u32Proto = aProto;
     285    r.proto = aProto;
    286286    r.strHostIP = aBindIp;
    287287    r.u16HostPort = aHostPort;
     
    310310    Utf8Str strHostIP = r.strHostIP;
    311311    Utf8Str strGuestIP = r.strGuestIP;
    312     NATProtocol_T proto = r.u32Proto;
     312    NATProtocol_T proto = r.proto;
    313313    uint16_t u16HostPort = r.u16HostPort;
    314314    uint16_t u16GuestPort = r.u16GuestPort;
  • trunk/src/VBox/Main/xml/Settings.cpp

    r33731 r33827  
    20362036            uint32_t port = 0;
    20372037            (*pf)->getAttributeValue("name", rule.strName);
    2038             (*pf)->getAttributeValue("proto", rule.u32Proto);
     2038            (*pf)->getAttributeValue("proto", rule.proto);
    20392039            (*pf)->getAttributeValue("hostip", rule.strHostIP);
    20402040            (*pf)->getAttributeValue("hostport", port);
     
    38863886                if ((*rule).strName.length())
    38873887                    pelmPF->setAttribute("name", (*rule).strName);
    3888                 pelmPF->setAttribute("proto", (*rule).u32Proto);
     3888                pelmPF->setAttribute("proto", (*rule).proto);
    38893889                if ((*rule).strHostIP.length())
    38903890                    pelmPF->setAttribute("hostip", (*rule).strHostIP);
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