Changeset 20337 in vbox
- Timestamp:
- Jun 5, 2009 2:23:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImpl.cpp
r20263 r20337 2616 2616 if (uri.startsWith("SunCloud://", Utf8Str::CaseInsensitive)) /* Sun Cloud service */ 2617 2617 { 2618 type = VFSType_S3; 2619 strProtocol = "SunCloud://"; 2618 throw E_NOTIMPL; 2619 // type = VFSType_S3; 2620 // strProtocol = "SunCloud://"; 2620 2621 } 2621 2622 else if (uri.startsWith("S3://", Utf8Str::CaseInsensitive)) /* S3 service */ 2622 2623 { 2623 type = VFSType_S3; 2624 strProtocol = "S3://"; 2624 throw E_NOTIMPL; 2625 // type = VFSType_S3; 2626 // strProtocol = "S3://"; 2625 2627 } 2626 2628 else if (uri.startsWith("webdav://", Utf8Str::CaseInsensitive)) /* webdav service */ … … 2723 2725 if (m->strPath.startsWith("SunCloud://", Utf8Str::CaseInsensitive)) /* Sun Cloud service */ 2724 2726 { 2725 task->storageType = VFSType_S3; 2726 strProtocol = "SunCloud://"; 2727 throw E_NOTIMPL; 2728 // task->storageType = VFSType_S3; 2729 // strProtocol = "SunCloud://"; 2727 2730 } 2728 2731 else if (m->strPath.startsWith("S3://", Utf8Str::CaseInsensitive)) /* S3 service */ 2729 2732 { 2730 task->storageType = VFSType_S3; 2731 strProtocol = "S3://"; 2733 throw E_NOTIMPL; 2734 // task->storageType = VFSType_S3; 2735 // strProtocol = "S3://"; 2732 2736 } 2733 2737 else if (m->strPath.startsWith("webdav://", Utf8Str::CaseInsensitive)) /* webdav service */
Note:
See TracChangeset
for help on using the changeset viewer.