[vbox-dev] PATCH : make VBoxManage show the extpack implementing VRDE in showvminfo

Christophe Devriese christophe.devriese at gmail.com
Mon May 16 09:24:58 GMT 2011


Index: src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
===================================================================
--- src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp    (revision 37092)
+++ src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp    (working copy)
@@ -1432,6 +1432,9 @@
                                  || (videoChannel == "1");
             Bstr videoChannelQuality;
             vrdeServer->GetVRDEProperty(Bstr("VideoChannel/Quality").raw(),
videoChannelQuality.asOutParam());
+                                               Bstr extPack;
+
vrdeServer->GetVRDEExtPack(extPack.asOutParam());
+
             AuthType_T authType;
             const char *strAuthType;
             vrdeServer->COMGETTER(AuthType)(&authType);
@@ -1476,6 +1479,7 @@
                 RTPrintf("vrdemulticon=\"%s\"\n", fMultiCon ? "on" :
"off");
                 RTPrintf("vrdereusecon=\"%s\"\n", fReuseCon ? "on" :
"off");
                 RTPrintf("vrdevideochannel=\"%s\"\n", fVideoChannel ? "on"
: "off");
+                RTPrintf("vrdeextpack=%lS\n", extPack.raw());
                 if (fVideoChannel)
                     RTPrintf("vrdevideochannelquality=\"%lS\"\n",
videoChannelQuality.raw());
             }
@@ -1483,7 +1487,7 @@
             {
                 if (address.isEmpty())
                     address = "0.0.0.0";
-                RTPrintf("VRDE:            enabled (Address %lS, Ports %lS,
MultiConn: %s, ReuseSingleConn: %s, Authentication type: %s)\n",
address.raw(), ports.raw(), fMultiCon ? "on" : "off", fReuseCon ? "on" :
"off", strAuthType);
+                RTPrintf("VRDE:            enabled (Address %lS, Ports %lS,
ExtPack: %lS, MultiConn: %s, ReuseSingleConn: %s, Authentication type:
%s)\n", address.raw(), ports.raw(), extPack.raw(), fMultiCon ? "on" : "off",
fReuseCon ? "on" : "off", strAuthType);
                 if (console && currentPort != -1 && currentPort != 0)
                    RTPrintf("VRDE port:       %d\n", currentPort);
                 if (fVideoChannel)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.virtualbox.org/pipermail/vbox-dev/attachments/20110516/84d04d90/attachment.html>


More information about the vbox-dev mailing list