Re: [FreeRDP-devel] bandwidth usage, h264 questions, freerdp-shadow-cli + wfreerdp, windows 10

2018-08-09 Thread Alfred Eisenberg (aeisenbe) via FreeRDP-devel
Thanks Armin, I was able to get Openh264 working and it keeps bandwidth down to about 1mbps even with lots of screen updating. CPU usage is a bit high when using VMs on my MAC, but the client/decoder end only used about 6% CPU on my 7 year old i7 hypertheaded quadcore running windows 7. alf

Re: [FreeRDP-devel] bandwidth usage, h264 questions, freerdp-shadow-cli + wfreerdp, windows 10

2018-08-09 Thread Armin Novak via FreeRDP-devel
Hi, You're correct, the /gfx:avc444 parameter of the client announces that capability to the server. (if the client is compiled with support) The server is always free to send whatever it deems best. As for the crash, the windows shadow server (as the whole windows port) is in need of some

[FreeRDP-devel] bandwidth usage, h264 questions, freerdp-shadow-cli + wfreerdp, windows 10

2018-08-08 Thread Alfred Eisenberg (aeisenbe) via FreeRDP-devel
Hi, I’ve built freerdp (very recent master) with options -DWITH_SSE2=ON -DWITH_SERVER=ON. On windows 10. I run the server with just the port: argument, and wfreerdp with just /v:host:port. Bandwidth usage seems a bit high, but not much different than Microsoft rdp client/server while

Re: [FreeRDP-devel] Can't connect to Amazon EC2 Windows instance (ERRCONNECT_TLS_CONNECT_FAILED)

2018-08-02 Thread Yuri Kanivetsky via FreeRDP-devel
...It does connect with `/sec:rdp` though. So it probably fails to negotiate. When used from Remmina, I get: Error connecting to RDP server example.com. TLS connection failed. Check that client and server support a common TLS version. How do I check that? Possibly related to:

[FreeRDP-devel] Can't connect to Amazon EC2 Windows instance (ERRCONNECT_TLS_CONNECT_FAILED)

2018-08-02 Thread Yuri Kanivetsky via FreeRDP-devel
Hi, I'm trying to connect from Arch Linux machine to Amazon EC2 instance (Windows Server 2003 R2 Datacenter Edition SP2), but what I get is: $ xfreerdp /version This is FreeRDP version 2.0.0-rc2 (n/a) $ xfreerdp /v:gprs.heavytrack.com [17:00:35:782] [6988:6989]

[FreeRDP-devel] FreeRDP 2.0.0-rc3 released

2018-08-02 Thread Armin Novak via FreeRDP-devel
Hi, the fourth release candidate of the upcoming 2.0.0 - 2.0.0-rc3 was just released and is available for download: https://pub.freerdp.com/releases/ or https://github.com/FreeRDP/FreeRDP/releases/tag/2.0.0-rc3 For more information see http://www.freerdp.com/2018/08/01/2_0_0_rc3-released Best

Re: [FreeRDP-devel] Creating a Client Session

2018-08-01 Thread R0b0t1 via FreeRDP-devel
On Wed, Aug 1, 2018 at 11:27 AM, R0b0t1 wrote: > On Wed, Aug 1, 2018 at 2:27 AM, Armin Novak wrote: >> Glad it works, >> >> as for scancodes you have to figure out what type of code you get >> (libinput? X11?) and map that accordingly. >> > > I'm using SDL2. I can't exactly tell what it

Re: [FreeRDP-devel] Creating a Client Session

2018-08-01 Thread Armin Novak via FreeRDP-devel
Glad it works, as for scancodes you have to figure out what type of code you get (libinput? X11?) and map that accordingly. Preferred way would be to use freerdp_input_send_keyboard_event and freerdp_input_send_keyboard_event_ex which are wrappers around direct function pointer access with

Re: [FreeRDP-devel] Creating a Client Session

2018-07-31 Thread Armin Novak via FreeRDP-devel
> Thanks. I did and am mostly on the right track. If you wouldn't mind > could you look over the code I have? The painting callbacks are never > called. Though as far as I can tell I implemented everything I should > have (probably even some things I didn't need to). You're missing the RDP main

Re: [FreeRDP-devel] Creating a Client Session

2018-07-30 Thread R0b0t1 via FreeRDP-devel
On Mon, Jul 30, 2018 at 3:18 PM, Armin Novak via FreeRDP-devel wrote: >>> You have a render buffer (gdi->primary_buffer) where you have the >>> rendered image >>> you have the invalid region which tells you which areas have changed >>> and you have the *end_paint callbacks which tell you when an

Re: [FreeRDP-devel] Creating a Client Session

2018-07-30 Thread Armin Novak via FreeRDP-devel
>> You have a render buffer (gdi->primary_buffer) where you have the >> rendered image >> you have the invalid region which tells you which areas have changed >> and you have the *end_paint callbacks which tell you when an update is ready >> > I'm afraid I can't find those. Nothing matches that

Re: [FreeRDP-devel] Creating a Client Session

2018-07-30 Thread R0b0t1 via FreeRDP-devel
On Mon, Jul 30, 2018 at 2:06 PM, Armin Novak via FreeRDP-devel wrote: > You have a render buffer (gdi->primary_buffer) where you have the > rendered image > you have the invalid region which tells you which areas have changed > and you have the *end_paint callbacks which tell you when an update

Re: [FreeRDP-devel] Creating a Client Session

2018-07-30 Thread Armin Novak via FreeRDP-devel
You have a render buffer (gdi->primary_buffer) where you have the rendered image you have the invalid region which tells you which areas have changed and you have the *end_paint callbacks which tell you when an update is ready There are also a lot of other hooks to implement optimized versions

Re: [FreeRDP-devel] Creating a Client Session

2018-07-30 Thread R0b0t1 via FreeRDP-devel
On Mon, Jul 30, 2018 at 11:53 AM, R0b0t1 wrote: > On Mon, Jul 30, 2018 at 2:45 AM, Armin Novak via FreeRDP-devel > wrote: >> client/X11/xf_client.c implements the callbacks (RdpClientEntry function) >> >> >> Go through the different callbacks in xfreerdp_client_new to get an idea >> of setting

Re: [FreeRDP-devel] Creating a Client Session

2018-07-30 Thread R0b0t1 via FreeRDP-devel
On Mon, Jul 30, 2018 at 2:45 AM, Armin Novak via FreeRDP-devel wrote: > client/X11/xf_client.c implements the callbacks (RdpClientEntry function) > > > Go through the different callbacks in xfreerdp_client_new to get an idea > of setting up and cleaning up a session. > > > P.s. Sorry,

Re: [FreeRDP-devel] Hang channel rdpgfx

2018-07-30 Thread Michael Etscheid via FreeRDP-devel
Hello, The complete command line is: xfreerdp /f /sec-rdp /u:'' /p:'' /d:'gpudom' /bpp:32 /rfx /gfx:AVC444 /sound:sys:pulse /v:192.168.1.100 I suspected it was related to X11 because it is a significant difference between the two working environments. Furthermore, the strange thing is that the

[FreeRDP-devel] WG: Hang channel rdpgfx

2018-07-30 Thread Michael Etscheid via FreeRDP-devel
Hi, I am using a relatively new version of freerdp: 2.0.0-rc2 (2d0439b). I have to use an older version of the Linux kernel (3.2.102) and X11 (version 1.11.4) because the old thin client has problems with the openchrome driver with newer versions of X11. The driver cannot find a connected

Re: [FreeRDP-devel] Hang channel rdpgfx

2018-07-30 Thread Armin Novak via FreeRDP-devel
Hi, No, there should be no dependency on these. All graphics operations are done on the CPU and only the final image is rendered by X11/whatever the backend. To be sure, just try the whole thing with /gdi:sw, then also the X11 bitmaps are replaced by simple memory buffers until the final image

Re: [FreeRDP-devel] Creating a Client Session

2018-07-30 Thread Armin Novak via FreeRDP-devel
Hi, yes, you need to create a client context and run that. the struct functions provide client side entry points (channel and library related stuff is initiated internally) A good example is client/X11/cli/xfreerdp.c for the use of these functions. client/X11/xf_client.c implements the

Re: [FreeRDP-devel] Hang channel rdpgfx

2018-07-30 Thread Armin Novak via FreeRDP-devel
Hi, which version of freerdp do you use? Might be related to a bug already fixed if it is an older one. The server OS and settings would also be very relevant. /gfx was introduced with windows 8 and nearly each version since has introduced a new mode (avc420, avc444, ...) By default avc444 is

[FreeRDP-devel] Creating a Client Session

2018-07-29 Thread R0b0t1 via FreeRDP-devel
What do I need to do? I tried looking at the official client and Remmina. Remmina helped some but I am still lost. How close is: freerdp_client_context_new(); freerdp_client_start(); freerdp_client_stop(); freerdp_client_context_free(); to the correct lifecycle? There are lots of other

[FreeRDP-devel] Hang channel rdpgfx

2018-07-25 Thread Michael Etscheid via FreeRDP-devel
Hello I have an old thin client with VIA900 and use an older thinstation version with Linux kernel 3.2 as OS. When I use freerdp with /rfx all is OK. But when I use the parameters /rfx /gfx:AVC444, with WLOG_LEVEL=TRACE turned on, I can see that after a short time no output appears via

Re: [FreeRDP-devel] connet window server2012 error!

2018-07-16 Thread Antenore Gatta via FreeRDP-devel
Thanks Armin On Mon, 16 Jul 2018 09:10:48 +0200 Armin Novak via FreeRDP-devel wrote: > Hi, > > > 1. Did you allow remote app functionality on the server? (Aka did you > export notepad.exe as allowed application?) > > 2. Does normal desktop connection to that server work with xfreerdp? > >

[FreeRDP-devel] connet window server2012 error!

2018-07-15 Thread 娄 明涛 via FreeRDP-devel
xfreerdp --version v1.1.0-beta1 application server windows server 2012 command line : xfreerdp /v:192.168.3.103 /u:apptest /p:123456 /port:3389 /d:x.com /app:c://windows/system32/notepad.exe error info: RAIL exec error: execResult=RAIL_EXEC_E_FAIL NtError=0x2 when i use

[FreeRDP-devel] FReeRDP PPA (by Remmina PPA) - symbols not updated

2018-07-15 Thread Antenore Gatta via FreeRDP-devel
Hi all, the RemminaPPA/FreeRDP daily PPA build is not working anymore because it looks like symbols have changed [1] I'm not sure is something I can fix myself, that's why I'm writing to you. If I can, apologizes, but if you could help me understand how it's better ;-) Thanks a lot in

Re: [FreeRDP-devel] Memory exhaustion on Win10

2018-07-05 Thread Eric Brown via FreeRDP-devel
I would bring this up in the Windows Protocol Forums ( https://social.msdn.microsoft.com/Forums/en-US/home?forum=os_windowsprotocols), or email to doch...@microsoft.com. They actively monitor for RDP issues Does this happen only with valid credentials? If not then it would be a more serious DoS

[FreeRDP-devel] Memory exhaustion on Win10

2018-07-03 Thread vrodriguez--- via FreeRDP-devel
Hello, I'm using freerdp to check RDP availability of a Win10 virtual machine. The command used is: /usr/bin/xfreerdp /cert-ignore /auth-only /u:$USER /p:$PASS /v:$HOST Every time this command is launched, the svchost.exe process related to "TermService" grows around 8MB in its "private bytes"

Re: [FreeRDP-devel] Fwd: ---Can FreeRDP be used for RemoteAccess for mirroring

2018-06-07 Thread Armin Novak via FreeRDP-devel
argv[0] is always the application name, so don't use it for your arguments On 06/07/2018 02:49 PM, Mohammad Zubair Khan wrote: > Hi, > > I tried to do add the following code to setConnectionInfo() where we are > creating arguments.which will eventually call freerdp_parse_arguments() > > File

Re: [FreeRDP-devel] Fwd: ---Can FreeRDP be used for RemoteAccess for mirroring

2018-06-07 Thread Mohammad Zubair Khan via FreeRDP-devel
Hi, I tried to do add the following code to setConnectionInfo() where we are creating arguments.which will eventually call freerdp_parse_arguments() File file = new File(CURRENT_FILE_DIRECTORY_PATH+"Invitation.msrcIncident"); args.add(CURRENT_FILE_DIRECTORY_PATH+"Invitation.msrcIncident");

[FreeRDP-devel] Fwd: ---Can FreeRDP be used for RemoteAccess for mirroring

2018-06-06 Thread Mohammad Zubair Khan via FreeRDP-devel
Armin, Thank you for responding to the query. I have another one related to it. Can you please guide me a bit how this can be done? I can create "Invitation.msrcIncident" which can be used for providing the remote access to the Desktop, but how can I use this file with FreeRDP? I assume during

Re: [FreeRDP-devel] ---Can FreeRDP be used for RemoteAccess for mirroring

2018-06-05 Thread Armin Novak via FreeRDP-devel
Hi Zubair, currently there is no option to input the required data/files on the android client, but the remote assist feature is supported by other clients (and the code is mostly in the common library) Should be possible to extend the android UI to allow creating bookmarks from such data/files

[FreeRDP-devel] ---Can FreeRDP be used for RemoteAccess for mirroring

2018-06-05 Thread Mohammad Zubair Khan via FreeRDP-devel
Hello, I am a novice in case of freeRDP. I have tried to compile the Android client and I am able to use it to connect to remote Windows 10 PCs. However, I can either work on it directly or connect to it remotely as expected. I want to use RDP to connect to a windows based system and mirror and

Re: [FreeRDP-devel] FreeRDP on a VM

2018-06-04 Thread Armin Novak via FreeRDP-devel
Client wise that should work out of the box with a server supporting that. (Only issues to expect are kerberos related issues, ip/fqdn related. Disabling that should do the trick) Server wise we currently only have a working shadow server, a full-fledged windows RDP server is not available,

[FreeRDP-devel] Help - ContextNew callback failed. Failed to create new peer context #4675

2018-05-26 Thread Aditya Sood via FreeRDP-devel
wfreerdp-server [11:19:54:567] [25920:73fc] [INFO][com.freerdp.server.windows] - screen id not provided. attempting to detect... [11:19:54:567] [25920:73fc] [INFO][com.freerdp.server.windows] - Detecting screens... [11:19:54:569] [25920:73fc] [INFO][com.freerdp.server.windows] - ID

[FreeRDP-devel] FreeRDP on a VM

2018-05-26 Thread Armin Novak via FreeRDP-devel
Client wise that should work out of the box with a server supporting that. (Only issues to expect are kerberos related issues, ip/fqdn related. Disabling that should do the trick) Server wise we currently only have a working shadow server, a full-fledged windows RDP server is not available,

[FreeRDP-devel] FreeRDP on a VM

2018-05-18 Thread Nathan Brandt via FreeRDP-devel
We have a Windows VM. We want to write a service which would run on this VM and in turn would do RDP connection using some user credentials to the same machine using FreeRDP, basically creating an interactive user session where GUI programs can be run. Is something like this possible? Basically,

Re: [FreeRDP-devel] Libva-cedrus/VAAPI backend integration of freerdp

2018-05-18 Thread Armin Novak via FreeRDP-devel
Hi Miguel, no, currently there is no (direct) support for libva, but it may be indirectly used with the FFMPEG AVC444 decoder backend. Currently the biggest obstacle there is the custom YUV to RGB filter for the AVC444 mode, which is done CPU only. Accelerating older RGB modes will most likely

[FreeRDP-devel] Libva-cedrus/VAAPI backend integration of freerdp

2018-05-17 Thread Miguel Amez via FreeRDP-devel
Hi list, I'm new to this list, so maybe I comunicate in an inadequate way my suggestion/development idea: We have been using xfreerdp in our school for 3 years with Allwinner A20 chipsets quite succesfully, and it has supposed a great power consuption decreasement for us. Our main problem is

Re: [FreeRDP-devel] Compilation on macOS, openssl, FIPS

2018-05-16 Thread Armin Novak via FreeRDP-devel
The reason your build fails is this: It uses the headers from ports, but links against the version shipped with OSX (they still have one, just don't ship the headers) which is a 0.9.x version if I recall correctly. Change the path of the lib to /opt/local/lib/libcrypto.dylib (and libssl.dylib)

Re: [FreeRDP-devel] Compilation on macOS, openssl, FIPS

2018-05-16 Thread Vladimir via FreeRDP-devel
Armin, thanks for reply, here are these values: //Path to a library. OPENSSL_CRYPTO_LIBRARY:FILEPATH=/usr/lib/libcrypto.dylib //Path to a file. OPENSSL_INCLUDE_DIR:PATH=/opt/local/include //Path to a library. OPENSSL_SSL_LIBRARY:FILEPATH=/usr/lib/libssl.dylib libcrypto.dylib and libssl.dylib

Re: [FreeRDP-devel] Compilation on macOS, openssl, FIPS

2018-05-16 Thread Armin Novak via FreeRDP-devel
Hi Vladimir, FreeRDP does not access FIPS related functions of OpenSSL. It first checks with a call to FIPS_mode (which is available from version 1.0.1) if it is enabled. If your compile is failing, best check which version is detected and if the includes match the library found. (Both can be

Re: [FreeRDP-devel] Mouse Hover question

2018-05-16 Thread Daniel Boyd via FreeRDP-devel
Don’t have access to group policy, unfortunately. I solved it by writing two scripts: one on the server and one of my local machine. Local machine checks the system idle time every 5 seconds and tells RDP machine to move the mouse if the idle time is less than 5 seconds :) Sent from my iPhone

Re: [FreeRDP-devel] Mouse Hover question

2018-05-16 Thread Cedros via FreeRDP-devel
Hello, If you are able to, you could just remove the session idle timeout on the rdp server: https://serverfault.com/questions/873399/rds-2016-session-limits Regards On Tue, May 15, 2018 at 6:46 PM, Daniel Boyd via FreeRDP-devel < freerdp-devel@lists.sourceforge.net> wrote: > I have a Windows

[FreeRDP-devel] Compilation on macOS, openssl, FIPS

2018-05-16 Thread Vladimir via FreeRDP-devel
Greetings to all! I was trying to compile xFreeRdp on macOS following the instructions here https://github.com/FreeRDP/FreeRDP/wiki/Compilation and have problems. Apple don't provide openssl on Mac anymore, and so we need to install it from brew or from macports. But! Currently FreeRDP tries

[FreeRDP-devel] Mouse Hover question

2018-05-15 Thread Daniel Boyd via FreeRDP-devel
I have a Windows machine that I RDP into for work that: 1) locks the screen after a period of inactivity, and 2) runs a messaging program that turns my status to "away" after a period inactivity Since this is an RDP session, only mouse movements or keyoard input in the RDP window register as

[FreeRDP-devel] Run Matlab

2018-05-01 Thread Mahmood Naderan via FreeRDP-devel
HiAs you know some programs won't run on terminal services. For example, Matlab by default won't run through remote desktop. There are many topics on that. With freeRDP, I also get an error that it can not be started through terminal services. Any way to fix that? Regards, Mahmood

Re: [FreeRDP-devel] Trying to connect to RDP farm behind gateway

2018-04-27 Thread Cedros via FreeRDP-devel
Hi Marc, Which version of OpenSSL are you using? I had this problem with 1.0.x (the old architecture using libeay and ssleay) but not with 1.1.x Cedric Le ven. 27 avr. 2018 à 09:08, info--- via FreeRDP-devel < freerdp-devel@lists.sourceforge.net> a écrit : > Hello, > > I did not know where I

Re: [FreeRDP-devel] FreeRDP audio issues with session brokers

2018-04-12 Thread Nick Couchman via FreeRDP-devel
On Thu, Apr 12, 2018 at 2:46 AM, Armin Novak via FreeRDP-devel < freerdp-devel@lists.sourceforge.net> wrote: > Hi, > > That is most likely an issue with redirection/reconnection necessary for > such broker connections. > > We are working on that, so you're most likely out of luck with older >

Re: [FreeRDP-devel] FreeRDP audio issues with session brokers

2018-04-12 Thread Armin Novak via FreeRDP-devel
Hi, That is most likely an issue with redirection/reconnection necessary for such broker connections. We are working on that, so you're most likely out of luck with older versions. Your best bet will most likely be 2.0.0-rc2 with #4453 applied. Other than that, you'll need to backport a lot of

[FreeRDP-devel] FreeRDP 2.0.0-rc2 released

2018-04-11 Thread Bernhard Miklautz via FreeRDP-devel
Hi, the third release candidate of the upcoming 2.0.0 - 2.0.0-rc2 was just released and is available for download: https://pub.freerdp.com/releases/ or https://github.com/FreeRDP/FreeRDP/releases/tag/2.0.0-rc2 For more information see http://www.freerdp.com/2018/04/11/2_0_0_rc2-released Best

[FreeRDP-devel] FreeRDP audio issues with session brokers

2018-04-10 Thread Antony Awaida via FreeRDP-devel
Hi there: We are trying to use FreeRDP (BTW a great piece of software) over MS connection broker (win 2012) FreeRDP works fine when we use it over a single server, however, when we use it over a session broker the audio input stops working. We have tried FreeRDP 1.1 and 1.2 with no luck (we

[FreeRDP-devel] USB Drive Redirection

2018-04-05 Thread Mike Dunn via FreeRDP-devel
Hi, I am trying to get usb drive redirection working with the latest FreeRDP from the master branch. In previous versions I was able to use /drive:'USB,/mnt/usbdevice' with or without the usb drive plugged in and it worked. Now when the device is not plugged in it will not connect and I get

Re: [FreeRDP-devel] WASM support?

2018-04-04 Thread Cedros via FreeRDP-devel
Indeed it should provide a better performance; but, if you are up to have a native rdp client into your browser, better use freerdp (or mstsc) directly because you will end up having to open the port 3389 on your firewall and proxies, and most companies won't allow it. Perhaps an intermediate

Re: [FreeRDP-devel] WASM support?

2018-04-04 Thread Fredrik Orderud via FreeRDP-devel
On Wed, Apr 4, 2018 at 3:05 PM Cedros wrote: > > I'm the author of Myrtille (https://github.com/cedrozor/myrtille), an > open source, clientless, rdp web gateway comparable to Guacamole (just made > for Windows instead of Linux). > Impressive work! I will for sure take a

Re: [FreeRDP-devel] WASM support?

2018-04-04 Thread Cedros via FreeRDP-devel
Hi Fredrik, I'm the author of Myrtille (https://github.com/cedrozor/myrtille), an open source, clientless, rdp web gateway comparable to Guacamole (just made for Windows instead of Linux). Back in time, I had a look at what can be done into pure Javascript (no add-on or extension) and it was

[FreeRDP-devel] WASM support?

2018-04-03 Thread Fredrik Orderud via FreeRDP-devel
Hi, I’m investigating alternatives for “clientless" streaming of Windows desktops to a web browser. Apache Guacamole appear to already support this through its FreeRDP backend. This is nice, but it require a separate server for translation between RDP and the Guacamole protocol. I would be much

[FreeRDP-devel] MS CredSSP updates for CVE-2018-0886

2018-04-03 Thread Vic Pol via FreeRDP-devel
Hi, After installing this update to target Windows 10 PC freerdp clients cannot establish connection. We are getting output: [12:56:18:766] [10668:2888] [ERROR][com.freerdp.core.transport] - BIO_read returned a system error 0: No error [12:56:18:766] [10668:2888]

[FreeRDP-devel] Choppy microphone with either ALSA or pulse

2018-03-26 Thread Boris Staletic via FreeRDP-devel
Hello, I have tried opening a github issue, asking for support, but have told to ask on the mailing list. I have tried both, master and stable-1.1 branches, compiling them with `cmake -DCMAKE_BUILD_TYPE=Debug -DWITH_SSE2=OFF -DWITH_PULSE=ON ..` from `FreeRDP/build` directory. If I connect

Re: [FreeRDP-devel] help-wanted client 2.0.0-dev2 GSSAPI authentication not working

2018-03-19 Thread DELHOMME Christophe 605228 via FreeRDP-devel
Hi thanks for you help. I've read the Microsoft information before send you an email https://social.msdn.microsoft.com/Forums/en-US/da074f0f-0887-4151-88ea-19a671ed91d9/is-it-possible-to-do-true-kerberos-sso-using-rdp-?forum=os_windowsprotocols but in fact I haven't understood that

Re: [FreeRDP-devel] help-wanted client 2.0.0-dev2 GSSAPI authentication not working

2018-03-19 Thread Thomas Calderon via FreeRDP-devel
Indeed, what you should be able to do is negotiate the NLA channel using Kerberos and then be prompted again for credentials. You can check that your user credentials store contains the session ticket for the RDP host you are trying to connect to has been added. Cheers, Thomas On Mon, Mar 19,

Re: [FreeRDP-devel] help-wanted client 2.0.0-dev2 GSSAPI authentication not working

2018-03-19 Thread Bernhard Miklautz via FreeRDP-devel
Hi, On Mon, Mar 19, 2018 at 02:03:56PM +0100, DELHOMME Christophe 605228 via FreeRDP-devel wrote: > |xfreerdp /buildconfig [10:45:47:939] [13878:13878] > ... > |xfreerdp /u:username /v:hostname.domain [10:47:39:253] > ... > [DEBUG][com.freerdp.core.nego] - Negotiated NLA security >

[FreeRDP-devel] help-wanted client 2.0.0-dev2 GSSAPI authentication not working

2018-03-19 Thread DELHOMME Christophe 605228 via FreeRDP-devel
Hey I've compiled 2.0.0-dev2 with WITH_GSSAPI=ON but it seems not working (there is no option to force this feature or something in logs) |xfreerdp /buildconfig [10:45:47:939] [13878:13878] [DEBUG][com.freerdp.utils] - Registering signal hook... [10:45:47:942] [13878:13878]

[FreeRDP-devel] can not redirect usb

2018-03-06 Thread 王子轩 via FreeRDP-devel
$ uname -a Linux xinwei-laptop 4.10.0-28-generic #32~16.04.2-Ubuntu SMP Thu Jul 20 10:19:48 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux $ /opt/freerdp-nightly/bin/xfreerdp /u:xinwei /p:asd /v:10.65.120.58 /usb:auto [16:23:22:576] [6304:6305] [INFO][com.freerdp.client.common.cmdline] - loading

[FreeRDP-devel] black screen problem on freeRDP server

2018-03-05 Thread Guy Berdnikov via FreeRDP-devel
Hi, I downloaded FreeRDP version 2.0.0-dev from Jenkins ci and compiled in server mode on my win10 pro VM. 1) I have started the freerdp-shadow-cli.exe and the server is running [15:49:22:717] [1732:05dc] [INFO][com.freerdp.server.shadow.win] - width: 0 height: 0 [15:49:22:720]

Re: [FreeRDP-devel] Can FreeRDP be used as server?

2018-03-01 Thread R0b0t1 via FreeRDP-devel
http://www.xrdp.org/ On Thu, Mar 1, 2018 at 7:59 AM, Guy Berdnikov via FreeRDP-devel wrote: > Solution for Windows 10 will also be good > > On Thu, Mar 1, 2018 at 3:46 PM, Guy Berdnikov wrote: > >> Does anyone have any use full

Re: [FreeRDP-devel] Can FreeRDP be used as server?

2018-03-01 Thread Guy Berdnikov via FreeRDP-devel
Solution for Windows 10 will also be good On Thu, Mar 1, 2018 at 3:46 PM, Guy Berdnikov wrote: > Does anyone have any use full information on that topic? > > On Thu, Feb 22, 2018 at 4:45 PM, Guy Berdnikov wrote: > >> Hi, >> I'm using Ubuntu 16.04 and I

Re: [FreeRDP-devel] Can FreeRDP be used as server?

2018-03-01 Thread Guy Berdnikov via FreeRDP-devel
Does anyone have any use full information on that topic? On Thu, Feb 22, 2018 at 4:45 PM, Guy Berdnikov wrote: > Hi, > I'm using Ubuntu 16.04 and I need to run FreeRdp Server in debug mode. > > I have downloaded FreeRdp from git, installed the suggested dependencies > and >

[FreeRDP-devel] xfreerdp with Solaris 11.4 beta InitializeWaitableTimer: os specific implementation is missing

2018-03-01 Thread Andrew Watkins via FreeRDP-devel
Hello, Just wonder if any one has looked at getting the new timer implementation working for Solaris 11.4 $ /usr/local/freerdp/bin/xfreerdp +clipboard  /d: /size:1024x768  /u:x  /v:hostname [11:32:32:930] [9500:0002] [INFO][com.freerdp.client.common.cmdline] - loading channelEx

[FreeRDP-devel] RDP server output stream protocol

2018-02-22 Thread Guy Berdnikov via FreeRDP-devel
Hi, Can someone explain the difference in terms of the protocol between the output stream (that returns from the remote machine) between RDP, VNC, X protocol, and other remote protocols? Specifically - is there any protocol that can return video in H624? Or JEPGs? Or other formats? --

[FreeRDP-devel] Can FreeRDP be used as server?

2018-02-22 Thread Guy Berdnikov via FreeRDP-devel
Hi, I'm using Ubuntu 16.04 and I need to run FreeRdp Server in debug mode. I have downloaded FreeRdp from git, installed the suggested dependencies and built it with cmake -DCMAKE_BUILD_TYPE=Debug -DWITH_SSE2=ON -DWITH_SERVER=ON But still, I think I have something missing. I'm trying to run it

[FreeRDP-devel] How to activate the hmac using via command arguments

2018-02-13 Thread Guy Berdnikov via FreeRDP-devel
Hi, In FreeRDP/libfreerdp/core/*fastpath.c *in function* fastpath_send_multiple_input_pdu* There is this *rdp->sec_flags* which is always null. Is there any way to set a value in *sec_flags* maybe from the command arguments so that the *security_hmac_signature *will be called? -- Sincerely, Guy

Re: [FreeRDP-devel] iFreeRdp on iPhone and Retina

2018-02-12 Thread Predrag Manojlović via FreeRDP-devel
Hello I want to sign out of this mailing list but that doesn't work. Password recovery never send an email. So, i will make a three day grace period that you provide a way to unsubscribe. Best On Mon, Feb 12, 2018 at 1:52 PM, Armin Novak via FreeRDP-devel < freerdp-devel@lists.sourceforge.net>

[FreeRDP-devel] iFreeRdp on iPhone and Retina

2018-02-12 Thread Aldo Pannocchia via FreeRDP-devel
Hi, I need to use iFreeRDP on iPhone X and iPhone 8. It's impossible to use iFreeRDP due to resolution of those devices. The problem is the screen size, for example on iPhone X the view.bounds.size in landscape is 568 x 320, this resolution is too bad to work with an rdp session. I need a

Re: [FreeRDP-devel] FreeRDP 1.0.2 with TLS 1.2

2018-02-07 Thread Tomer Admon via FreeRDP-devel
Hi, Thanks Ondrej and Bernhard! I followed the PR and managed to connect using stable-1.1 branch to Windows 10 running only TLS 1.2. If it’s possible we would like to ask to merge this change also to the stable-1.1 branch, so it will be available OOTB. Thanks for the help! Tomer From: Ondrej

Re: [FreeRDP-devel] FreeRDP 1.0.2 with TLS 1.2

2018-02-01 Thread Ondrej Holy via FreeRDP-devel
Hi, see my comment regarding this on: https://github.com/FreeRDP/FreeRDP/issues/2128#issuecomment-362269675 Regards Ondrej 2018-01-31 13:59 GMT+01:00 Bernhard Miklautz via FreeRDP-devel < freerdp-devel@lists.sourceforge.net>: > Hi Tomer, > > On Tue, Jan 30, 2018 at 12:22:00PM +, Tomer

[FreeRDP-devel] RDS 2016 CAL not issued to FreeRDP clients

2018-01-31 Thread Adam Zieliński via FreeRDP-devel
Hi, I'm having problem with FreeRDP ( version 2.0.0-dev2 (8f52c7ed8) ). I have three Remote Desktop Windows 2016 Standard servers: - DC - primary domain controller with Remote Desktop Connection Broker and License Server, per-Device mode - RDSA/RDSB - two Session Hosts If I connect with

Re: [FreeRDP-devel] FreeRDP 1.0.2 with TLS 1.2

2018-01-31 Thread Bernhard Miklautz via FreeRDP-devel
Hi Tomer, On Tue, Jan 30, 2018 at 12:22:00PM +, Tomer Admon via FreeRDP-devel wrote: > 1- We are currently using FreeRDP 1.0.2 on CentOS for RDP-ing to Windows > boxes. Our IT department, started to switch to TLS 1.2 on all Windows > machines and now blocking TLS 1.1 and 1.0. Trying to

[FreeRDP-devel] FreeRDP 1.0.2 with TLS 1.2

2018-01-31 Thread Tomer Admon via FreeRDP-devel
Hi guys, Few quick questions: 1- We are currently using FreeRDP 1.0.2 on CentOS for RDP-ing to Windows boxes. Our IT department, started to switch to TLS 1.2 on all Windows machines and now blocking TLS 1.1 and 1.0. Trying to RDP into a windows machine using TLS 1.2 always fails. a.

[FreeRDP-devel] [freerdp 2.0.0-rc1] app crashing

2018-01-31 Thread 김태환 via FreeRDP-devel
Hello ~ When running the MacFreeRDP App that was Built and generated freerdp 2.0.0-rc1, i kindly ask you for the errors generated. Build environment osx: 10.11.4 Xcode: Version 7.3 The occurrence file and the location of occurrence are changed to bold. file

Re: [FreeRDP-devel] Freedrp compilation for Google Chrome

2018-01-22 Thread Pascal Vandooren via FreeRDP-devel
Hello Bernhard, Thanks for your reply ... but i made a lot of search ... and same i never find a answer ... i'm downloading the Visual studio and all the libraries to try to adapt ... but i search some experiences .. The goal is to develop a free RDP solution for chrome / chromebooks .. i fond a

Re: [FreeRDP-devel] Freedrp compilation for Google Chrome

2018-01-22 Thread Bernhard Miklautz via FreeRDP-devel
Hi Pascal, On Mon, Jan 22, 2018 at 12:33:21PM +0100, Pascal Vandooren via FreeRDP-devel wrote: > I 'm shearching information about , how to compile FreeRDP for Chrome ? > I see a lot of software compiled for Chrome based on FreeRDP but i don'y > find information about the process .. > > Is there

[FreeRDP-devel] Freedrp compilation for Google Chrome

2018-01-22 Thread Pascal Vandooren via FreeRDP-devel
Hello Everyone , I 'm shearching information about , how to compile FreeRDP for Chrome ? I see a lot of software compiled for Chrome based on FreeRDP but i don'y find information about the process .. Is there a good Samaritan to help me ? Kind regards Pascal

Re: [FreeRDP-devel] compilation problem

2017-12-17 Thread Alexei Lozovsky
Hi Alex, On Dec 17, 2017, at 19:56, Alex Mihajlov wrote: > Hello, I try compile freerdp-2.0.0-rc1 on my OpenBSD 6.2. > > [...] > > /home/amihailov/devel/freerdp-2.0.0-rc1/winpr/libwinpr/libwinpr2.so.2.0: > undefined reference to `backtrace_symbols' >

[FreeRDP-devel] compilation problem

2017-12-17 Thread Alex Mihajlov
Hello, I try compile freerdp-2.0.0-rc1 on my OpenBSD 6.2. I run cmake with these arguments: $ cmake -DCMAKE_BUILD_TYPE=Debug -DWITH_SSE2=ON -DWITH_ALSA=OFF -DWITH_CUPS=ON -DWITH_DIRECTFB=OFF -DWITH_GSTREAMER_0_10=OFF -DWITH_GSTREAMER_1_0=OFF -DWITH_OPENSLES=OFF -DWITH_PCSC=ON -DWITH_PULSE=OFF

Re: [FreeRDP-devel] Question about the Thread pool routine function

2017-12-06 Thread Alexei Lozovsky
Hi Guy, On Dec 6, 2017, at 12:39, Guy Berdnikov wrote: > *First place: winpr/libwinpr/pool/pool.c* > > static BOOL InitializeThreadpool(PTP_POOL pool) This function really launches four threads to get started... > *Second place: **winpr/libwinpr/pool/pool.c* > > BOOL

[FreeRDP-devel] Question about the Thread pool routine function

2017-12-06 Thread Guy Berdnikov
Hello everyone, I'm currently debugging and understanding all the Client Flows and I have a question that I would be glad if you could answer me. When I run the FreeRDP Client I see that the program has 2 places that it creates threads and add them to the thread pool. In path:

Re: [FreeRDP-devel] Abysmal performance in with Bluestacks2 in windows session

2017-11-29 Thread Thomas Erbesdobler
Hi Peter, Maybe you could add /gfx-thin-client to xfreerdp's command line options. This will enable so called server side rendering and the new RDP 8 graphics pipeline (a protocol extension to RDP for rich multimedia content, also referred to as EGFX). The big advantage of this is that the server

[FreeRDP-devel] Abysmal performance in with Bluestacks2 in windows session

2017-11-29 Thread Hans-Peter Jansen
Hi, I'm suffering from abysmal performance in a special constellation as follows: Windows 8.1 vSphere VM running Bluestacks2 2.1.7 Android emulator Linux Desktop with freerdp-2.0.0 (git as of today) The Linux desktop just runs one or two xfreerdp sessions with Win8.1 VMs. In

[FreeRDP-devel] FreeRDP release 2.0.0-rc1

2017-11-28 Thread Bernhard Miklautz
Hi there, the second release candidate of the upcoming 2.0.0 - 2.0.0-rc1 was just released and is available for download: https://pub.freerdp.com/releases/ or https://github.com/FreeRDP/FreeRDP/releases/tag/2.0.0-rc1 For more information see http://www.freerdp.com/2017/11/28/2_0_0_rc1-released

[FreeRDP-devel] Compiling freerdp with vdpau support

2017-11-28 Thread Miguel Amez
Good morning, This is my first contribution to the mailing list, so sorry if I am not exactly right with my question or if it makes sense or not. I am working with Banana pi for a RPD zero-client solution, and I am testing FreeRDP. As bananapi is only cappable to decompress video by hardware

[FreeRDP-devel] Libfreerdp Documentation?

2017-11-10 Thread R0b0t1
Hello, I need to embed RDP into one of my projects. Is documentation for FreeRDP's main support library available? I wasn't able to find any. Cheers, R0b0t1 -- Check out the vibrant tech community on one of the

Re: [FreeRDP-devel] Set Timezone on RDP Connection

2017-10-24 Thread Nick Couchman
On Tue, Oct 24, 2017 at 12:41 PM, Jaime Crespo wrote: > Not sure how guacamole starts FreeRDP but if you can pass from the browser > to the web server the same info required here: > https://msdn.microsoft.com/en-us/library/cc240477.aspx > The should be trivial to

[FreeRDP-devel] Unable to compile and install FreeRDP on Centos 7 : Warnings and freerdp plugings are not installed.

2017-10-09 Thread Amarjeet Singh
Hi Team, I have downloaded the source code of FreeRDP from *https://github.com/FreeRDP/FreeRDP.git * I have tried to cmake it using this command *cmake -DCMAKE_BUILD_TYPE=Debug -DWITH_SSE2=ON .* I got the following two warnings. CMake Warning at

[FreeRDP-devel] RDP support dual screen

2017-09-29 Thread Steve
How to make this RDP to support dual screen under android? The hardware is done to support it. KloudPC Video : This is a server base client, for business /classroom/office and a general PC as 2nd home PC Best Regards.

[FreeRDP-devel] Connecting to broker fails

2017-09-07 Thread Marko Nikolić
Hello, I have a problem accessing the windows servers throught connection broker. The infrastructure i am connecting to is described below: Dedicated connection broker based on Windows Server 2016 (RDCB role) with several configured Collections, and Windows HyperV Server 2016 . RDP from

[FreeRDP-devel] Freerdp graphics

2017-08-29 Thread Blexen via FreeRDP-devel
Hello! Help me . Connection with ubuntu on freerdp to windows server 2008 R2 there was a problem with the graphics Connection command: xfreerdp  /u:user /p:pass /cert-ignore /f  /v:192.168.1.1 Image in attachment. 1. Freerdp from the ubuntu repository (Image freerdp_1 ) 2. Compilation

[FreeRDP-devel] Serial Port Redirection on freerdp-2.0.0-rc0

2017-08-17 Thread IreneWu 吳月霖
Dear all, For serial port redirection, one of our test cases is briefed below: 1. connect Windows 7 and Ubuntu 14.04.2 LTS with a serial cable having USB serial adapters on both ends, 2. install Realterm_2.0.0.70 on both Windows 7 and Windows 8.1, 3. run freerdp-2.0.0-rc0 on Ubuntu 14.04.2 LTS

[FreeRDP-devel] OT: My notes on setting up xrdp on Fedora

2017-08-12 Thread ToddAndMargo
Hi All, A bit off topic, but you guys may find my notes on setting up xrdp of interest: https://forums.fedoraforum.org/showthread.php?p=1792309 -T -- Check out the vibrant tech community on one of the world's

Re: [FreeRDP-devel] FreeRDP 2.0.0-rc0 released

2017-08-07 Thread ToddAndMargo
On 08/06/2017 11:13 PM, ToddAndMargo wrote: On 07/28/2017 06:56 PM, ToddAndMargo wrote: On 07/24/2017 08:28 AM, Bernhard Miklautz wrote: Hi all, the first release candidate of the upcoming 2.0.0 was published and is available for download. See:

Re: [FreeRDP-devel] FreeRDP 2.0.0-rc0 released

2017-08-07 Thread ToddAndMargo
On 07/28/2017 06:56 PM, ToddAndMargo wrote: On 07/24/2017 08:28 AM, Bernhard Miklautz wrote: Hi all, the first release candidate of the upcoming 2.0.0 was published and is available for download. See: http://www.freerdp.com/2017/07/24/2_0_0_rc0-released for details. Best regards, the FreeRDP

<    3   4   5   6   7   8   9   10   11   12   >