Nils Beyer <[email protected]> has reassigned Bugzilla Automation
<[email protected]>'s request for maintainer-feedback to [email protected]:
Bug 225559: net/krdc: "xfreerdp" parameter "/network:[...]" not supported
anymore in FreeRDP 2.0.0r1?
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=225559



--- Description ---
After upgrading all packages, it seems that "krdc" is no longer able to spawn
RDP sessions. Activating all debug flags using "kdebugdialog" reveals that
"krdc" executes "xfreerdp" with following options:
-------------------------------------------------------------------------------
-decorations /w:1255 /h:879 /kbd:0x00000407 /u:SECRETUSER
/parent-window:4194338 /bpp:16 /audio-mode:2 /drive:media,/media /network:lan
/cert-ignore +clipboard /port:3389 /v:SECRETSERVER
-------------------------------------------------------------------------------


Executing "xfreerdp" manually with above mentioned options line does not spawn
a RDP session as well and show "xfreerdp" usage output instead. Removing an
option one by one reveals that "xfreerdp" does not like the "/network"
parameter anymore - at least with that options combination.

Patching "krdc" to exclude that:
-------------------------------------------------------------------------------
--- rdpview.cpp.bak     2018-01-30 13:08:36.375470000 +0100
+++ rdpview.cpp 2018-01-30 12:53:57.551629000 +0100
@@ -310,7 +310,7 @@
             break;
         }

-        arguments << "/network:" + performance;
+        // arguments << "/network:" + performance; // nbe: broken in FreeRDP
2.0.0r1

         if (m_hostPreferences->console()) {
             arguments << "/admin";
-------------------------------------------------------------------------------


makes it working again...

Reply via email to