Armin Novak
bc16472ad5
Added missing CoreFoundation library to dependencies
2021-01-21 09:51:30 +01:00
akallabeth
284e20b140
Fixed #6696 : Implement HandshakeEx in windows client
...
Special thanks to @byteboon for bisecting the issue
2021-01-19 17:13:40 +01:00
Martin Fleisz
bd7b43a7d0
Merge pull request #6723 from akallabeth/color_fidelity_fix
...
Color fidelity fix
2021-01-19 14:14:47 +01:00
akallabeth
4ca2090f03
Return ENOENT if fuse_ino_t is not found
2021-01-18 19:13:56 +01:00
Armin Novak
78435c2eea
Added missing errno.h include
2021-01-18 19:13:56 +01:00
Armin Novak
72d9b7f7f5
Added add_definitions(-D_FILE_OFFSET_BITS=64)
2021-01-18 19:13:56 +01:00
jackyzy823
b972d70a9e
x11: refactor fuse code
2021-01-18 19:13:56 +01:00
jackyzy823
e7d2f62ce6
x11: handle special chars in generating file uri
2021-01-18 19:13:56 +01:00
jackyzy823
7f043ebb52
x11: update cmake file to build with fuse2/fuse3 or without fuse
2021-01-18 19:13:56 +01:00
jackyzy823
1de1f113ed
x11: more error handling for remote to local file copy
2021-01-18 19:13:56 +01:00
jackyzy823
a61c185d30
x11: implement all related code to file content request for size and FD_WRITESTIME flag in response , fix include dir for fuse
2021-01-18 19:13:56 +01:00
jackyzy823
2e0b5e07dc
x11: correct uri-list and other formats
2021-01-18 19:13:56 +01:00
jackyzy823
d537988f28
x11: add support for remote to local clipboard file copy
2021-01-18 19:13:56 +01:00
Armin Novak
6a2ae388f8
Added settings dump function
2021-01-18 18:46:04 +01:00
Martin Fleisz
68dfa353b8
locale: Fix keyboard detection on MacOS
2021-01-18 16:53:02 +01:00
Armin Novak
9549d090ab
Fixed const correctness of RECTANGLE_16 variable
2021-01-18 09:41:13 +01:00
Armin Novak
87e89bc719
Fixed pcap capture function const correctness
2021-01-18 09:41:13 +01:00
Armin Novak
8187ab7732
Fix ColorFidelity use
2021-01-18 09:41:13 +01:00
Martin Fleisz
037e00263a
Merge pull request #6721 from akallabeth/hotplug_sanitize
...
Check drive to hotplug for already being redirected
2021-01-15 11:34:48 +01:00
akallabeth
9e8d3fbbf5
Check drive to hotplug for already being redirected
...
some hotplug implementations report the same drive multiple times.
to avoid redirecting the same drive multiple times check if it is
already in the list before adding.
2021-01-15 10:41:12 +01:00
Martin Fleisz
98d0e508f9
Merge pull request #6718 from akallabeth/color_fidelity
...
Fix Color fidelity issues
2021-01-14 08:42:35 +01:00
Armin Novak
57b58df806
Fix color fidelity issues with windows 7
2021-01-13 16:10:05 +01:00
Martin Fleisz
2c5da24cb8
Merge pull request #6715 from akallabeth/order_fix
...
Fixed problematic cast of integer mask to bool
2021-01-13 12:19:01 +01:00
Armin Novak
8c353e9292
Fixed problematic cast of integer mask to bool
2021-01-13 11:52:24 +01:00
Martin Fleisz
d3530a16d5
primitives: Respect alpha values in YUV444 SSE pixel routine
2021-01-12 09:16:08 +01:00
Armin Novak
555e1ad8f2
Properly discard xfc->appWindow on focus loss
2021-01-11 15:18:30 +01:00
akallabeth
50e1c20786
Fixed #6635 : Use correct window handle for pointer operations
2021-01-11 15:18:30 +01:00
Martin Fleisz
8ed51bc5f5
core: Remove error code from string returned by rpc_error_to_string
...
This PR removes the error code from the error string returned by
rpc_error_to_string. The error code is passed into the function so it is
not necessary to append it to the returned string as well.
The PR also fixes the screwed formatting of the error code tables.
2021-01-11 10:21:21 +01:00
Martin Fleisz
e96415070c
Merge pull request #6670 from akallabeth/rfx_const
...
progressive codec simple tile fixes
2021-01-11 09:03:07 +01:00
Pascal Nowack
8ae820cd4f
winpr/clipboard: Also save lastWriteTime for FILEDESCRIPTORW
...
Currently, when a local uri-list is converted into a FILEDESCRIPTORW
list, WinPR doesn't submit the last write time for each file.
The result of this is that the last write time of each file on the
other peer will have the current time and not the actual last write
time that is present on the peer, where the files were copied from.
Fix this by also writing the last write time in addition to the
FD_WRITESTIME flag.
2021-01-11 08:36:10 +01:00
mezysinc
e96ef524c5
ptbr translation
...
strings in ptbr
2021-01-02 11:20:55 +01:00
kubistika
32ed597f5a
x11: use correct contact flag names in xf_input_touch_state_string
2021-01-02 11:05:10 +01:00
Martin Fleisz
f2e082aa12
Fix parsing of current keyboard locale
2020-12-23 15:05:20 +01:00
akallabeth
c865c4eb64
Added support for file://
urls for rdp files
2020-12-23 12:29:37 +01:00
Sergey Bronnikov
b1ad70c387
Add option BUILD_FUZZERS and config to build fuzzing tests
...
Patch adds support of fuzzing for local running and running
on OSS-Fuzz infrastructure [1]. Support can be enabled with option
BUILD_FUZZERS that disabled by default. Config fuzzer_config
includes options that should be used for building fuzzing tests.
How-To Build:
$ cmake -DBUILD_FUZZERS=ON \
-DCMAKE_C_COMPILER="/usr/bin/clang" \
-DCMAKE_CXX_COMPILER="/usr/bin/clang++"
-B build -S .
$ make -j -C build
1. https://google.github.io/oss-fuzz/getting-started/new-project-guide/
Closes #6680
2020-12-23 09:13:35 +01:00
Martin Fleisz
f5177ca7e7
rdg: Read and set error code when ending an RD Gateway session
2020-12-22 15:51:00 +01:00
Martin Fleisz
c11301d337
Merge pull request #6679 from akallabeth/desktop_resize
...
Removed size change check from DesktopResize
2020-12-22 13:29:54 +01:00
akallabeth
130561c9fc
Removed size change check from DesktopResize
...
Just pass on every reset event from the server, the callback might
need to reset internal state even if the resolution did not change.
2020-12-22 13:00:54 +01:00
akallabeth
4a7ec674e6
Respect invalidRegion in progressive_compress
2020-12-15 16:49:13 +01:00
akallabeth
e3445eefab
Fixed progressive decoding without subbanddiff
2020-12-15 14:47:05 +01:00
Martin Fleisz
65bf894c8a
Merge pull request #6669 from akallabeth/kbd_layout_detect
...
Fixed call to GetKeyboardLayout
2020-12-15 12:22:25 +01:00
akallabeth
8b8016ec21
Fixed call to GetKeyboardLayout
2020-12-15 11:29:51 +01:00
akallabeth
25a8abc4eb
Cleaned up rfx API
2020-12-14 17:44:30 +01:00
Martin Fleisz
fa218f79c1
Merge pull request #6662 from akallabeth/kbd_detect
...
Fixed keyboard layout detection for windows
2020-12-11 13:24:09 +01:00
akallabeth
af81d9bb47
Fixed keyboard layout detection for windows
2020-12-11 13:14:08 +01:00
David Fort
7eb3ff518a
Merge pull request #6657 from sss123next/external_io_api_fixes
...
typo fix
2020-12-10 13:29:10 +01:00
Martin Fleisz
f9693c188f
Merge pull request #6658 from akallabeth/proxy_port
...
Fixed #6656 : invalid read of proxy port.
2020-12-10 08:41:50 +01:00
akallabeth
3c237fd687
Fixed #6656 : invalid read of proxy port.
2020-12-10 07:38:25 +01:00
Gluzskiy Alexandr
4d47c626bc
typo fix
2020-12-10 01:20:44 +03:00
Martin Fleisz
995c0de9c8
Merge pull request #6653 from akallabeth/mac_server_fix
...
Fixed #6646
2020-12-09 16:19:45 +01:00