VirtualBox

Changeset 54314 in vbox for trunk/include


Ignore:
Timestamp:
Feb 19, 2015 9:32:18 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
98389
Message:

Main/DHCPServerImpl: for DHCP options keep not just the text
representation, but also encoding of that text representation.

When XML settings are read, interpret old format, without explicit
"encoding" attribute, as legacy encoding where we are expected to know
the actual format of the option from the option code itself. When
writing legacy options, write them in old format.

This is in preparation for using "de:ad:be:ef" hex-encoded option
values for non-standard options which format we can't know a priory.

File:
1 edited

Legend:

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

    r54311 r54314  
    312312typedef std::list<MachineRegistryEntry> MachinesRegistry;
    313313
    314 typedef std::map<DhcpOpt_T, com::Utf8Str> DhcpOptionMap;
     314struct DhcpOptValue
     315{
     316    enum Encoding {
     317        LEGACY,
     318        HEX,
     319    };
     320
     321    com::Utf8Str text;
     322    Encoding encoding;
     323
     324    DhcpOptValue()
     325      : text(), encoding(LEGACY) {}
     326
     327    DhcpOptValue(const com::Utf8Str &aText, Encoding aEncoding = LEGACY)
     328      : text(aText), encoding(aEncoding) {}
     329};
     330
     331typedef std::map<DhcpOpt_T, DhcpOptValue> DhcpOptionMap;
    315332typedef DhcpOptionMap::value_type DhcpOptValuePair;
    316333typedef DhcpOptionMap::iterator DhcpOptIterator;
Note: See TracChangeset for help on using the changeset viewer.

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