VirtualBox

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


Ignore:
Timestamp:
Apr 27, 2022 7:41:12 AM (3 years ago)
Author:
vboxsync
Message:

Main,Settings: Integrate the extension pack cryptographic module in the ExtPack manager etc., bugref:9955

File:
1 edited

Legend:

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

    r94643 r94714  
    834834    systemProperties->COMGETTER(DefaultVRDEExtPack)(str.asOutParam());
    835835    RTPrintf(List::tr("Remote desktop ExtPack:          %ls\n"), str.raw());
     836    systemProperties->COMGETTER(DefaultCryptoExtPack)(str.asOutParam());
     837    RTPrintf(List::tr("VM encryption ExtPack:           %ls\n"), str.raw());
    836838    systemProperties->COMGETTER(LogHistoryCount)(&ulValue);
    837839    RTPrintf(List::tr("Log history count:               %u\n"), ulValue);
     
    12131215        Bstr bstrVrdeModule;
    12141216        CHECK_ERROR2I_STMT(extPacks[i], COMGETTER(VRDEModule)(bstrVrdeModule.asOutParam()),hrc=hrcCheck; bstrVrdeModule.setNull());
     1217        Bstr bstrCryptoModule;
     1218        CHECK_ERROR2I_STMT(extPacks[i], COMGETTER(CryptoModule)(bstrCryptoModule.asOutParam()),hrc=hrcCheck; bstrCryptoModule.setNull());
    12151219        BOOL fUsable;
    12161220        CHECK_ERROR2I_STMT(extPacks[i], COMGETTER(Usable)(&fUsable),                     hrc = hrcCheck; fUsable = FALSE);
     
    12231227        RTPrintf(List::tr(
    12241228                   "Pack no.%2zu:   %ls\n"
    1225                    "Version:      %ls\n"
    1226                    "Revision:     %u\n"
    1227                    "Edition:      %ls\n"
    1228                    "Description:  %ls\n"
    1229                    "VRDE Module:  %ls\n"
    1230                    "Usable:       %RTbool\n"
    1231                    "Why unusable: %ls\n"),
     1229                   "Version:        %ls\n"
     1230                   "Revision:       %u\n"
     1231                   "Edition:        %ls\n"
     1232                   "Description:    %ls\n"
     1233                   "VRDE Module:    %ls\n"
     1234                   "Crypto Module:  %ls\n"
     1235                   "Usable:         %RTbool\n"
     1236                   "Why unusable:   %ls\n"),
    12321237                 i, bstrName.raw(),
    12331238                 bstrVersion.raw(),
     
    12361241                 bstrDesc.raw(),
    12371242                 bstrVrdeModule.raw(),
     1243                 bstrCryptoModule.raw(),
    12381244                 fUsable != FALSE,
    12391245                 bstrWhy.raw());
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