VirtualBox

Ignore:
Timestamp:
Feb 4, 2016 2:18:36 PM (9 years ago)
Author:
vboxsync
Message:

Main: Removed the VBOX_WITH_S3 code because we haven't maintained it properly for years.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/ApplianceImpl.cpp

    r59268 r59577  
    11871187 * Thread function for the thread started in Appliance::readImpl() and Appliance::importImpl()
    11881188 * and Appliance::writeImpl().
    1189  * This will in turn call Appliance::readFS() or Appliance::readS3() or Appliance::importFS()
    1190  * or Appliance::importS3() or Appliance::writeFS() or Appliance::writeS3().
     1189 *
     1190 * This will in turn call Appliance::readFS() or Appliance::importFS() or
     1191 * Appliance::writeFS().
    11911192 *
    11921193 * @param aThread
     
    12121213                taskrc = pAppliance->i_readFS(task);
    12131214            else if (task->locInfo.storageType == VFSType_S3)
    1214 #ifdef VBOX_WITH_S3
    1215                 taskrc = pAppliance->i_readS3(task);
    1216 #else
    12171215                taskrc = VERR_NOT_IMPLEMENTED;
    1218 #endif
    12191216        break;
    12201217
     
    12231220                taskrc = pAppliance->i_importFS(task);
    12241221            else if (task->locInfo.storageType == VFSType_S3)
    1225 #ifdef VBOX_WITH_S3
    1226                 taskrc = pAppliance->i_importS3(task);
    1227 #else
    12281222                taskrc = VERR_NOT_IMPLEMENTED;
    1229 #endif
    12301223        break;
    12311224
     
    12341227                taskrc = pAppliance->i_writeFS(task);
    12351228            else if (task->locInfo.storageType == VFSType_S3)
    1236 #ifdef VBOX_WITH_S3
    1237                 taskrc = pAppliance->i_writeS3(task);
    1238 #else
    12391229                taskrc = VERR_NOT_IMPLEMENTED;
    1240 #endif
    12411230        break;
    12421231    }
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