akallabeth
3f824daca4
Merge pull request #10827 from akallabeth/rdstls-log
...
[core,rdstls] use less verbose logging
2024-11-06 21:30:19 +01:00
akallabeth
315ab17984
[core,rdstls] use less verbose logging
...
the rdstls_recv function is called with possibly incomplete data, do not
log length check failures
2024-11-06 20:41:01 +01:00
akallabeth
93c4843399
Merge pull request #10826 from Devolutions/devops/upload
...
[ci] update upload-artifact action to version 4
2024-11-06 14:47:25 +01:00
Richard Boisvert
d5149d7b37
[ci] update upload-artifact action to version 4
2024-11-06 08:23:45 -05:00
akallabeth
cbc5d6d48b
Merge pull request #10825 from akallabeth/rpm-nightly-fix
...
[ci,nightly] fix build for fedora 41
2024-11-06 11:15:17 +01:00
Armin Novak
fbca659cb5
[ci,nightly] fix build for fedora 41
2024-11-06 12:14:10 +01:00
akallabeth
c9421d3714
Merge pull request #10822 from akallabeth/rdstls-silence
...
[core,rdstls] do silent password check
2024-11-06 11:06:36 +01:00
akallabeth
ec9b5c33bc
[core,rdstls] do silent password check
...
In rdstls_parse_pdu_data_type do not use logging stream functions. This
function might be called with incomplete data so avoid spamming the log.
2024-11-05 17:50:47 +01:00
akallabeth
9089150e28
Merge pull request #10821 from akallabeth/ios-ci
...
[winpr,comm] enable comm for iOS
2024-11-05 17:25:12 +01:00
akallabeth
c2cb03efd8
Merge pull request #10819 from akallabeth/ios-ci
...
[ci,ios] add configuration for dynamic build
2024-11-05 17:02:15 +01:00
akallabeth
617b4d966a
[winpr,comm] enable comm for iOS
...
The functions are supported in the SDK so compile it in
2024-11-05 17:01:35 +01:00
akallabeth
d9f551b7ca
[winpr,comm] add dummy implementation
...
Add dummy implementation for platforms not supporting serial interfaces
2024-11-05 16:37:17 +01:00
akallabeth
b57a098bf9
[ci,ios] add configuration for dynamic build
...
* Add build configuration for shared libraries
* Fix ENABLE_BITCONFIG setting for ci builds
* Enable unit tests for iOS
2024-11-05 16:37:10 +01:00
Martin Fleisz
7d8711cd72
Merge pull request #10817 from llyzs/rgbcopy
...
[core,primitive] fix rgb primitive copy without conversion.
2024-11-04 15:10:00 +01:00
Vic Lee
ce604a5a81
[core,primitive] fix rgb primitive copy without conversion.
2024-11-04 17:53:59 +08:00
akallabeth
7d5193d3d5
Merge pull request #10815 from akallabeth/improve-client-config
...
[client,common] include binary name in client buildconfig
2024-11-04 09:47:37 +01:00
akallabeth
fb3a127d00
[common,cmdline] add new functions
...
* Add freerdp_client_print_version_ex and
freerdp_client_print_buildconfig_ex to print version and build
configuration along with the binary name calling it
* Use these new functions instead of the ones that only print out
version and/or buildconfig
2024-11-04 09:06:12 +01:00
akallabeth
ecc84158b7
[client,common] include binary name in client buildconfig
2024-11-04 08:42:13 +01:00
David Fort
edf562126e
Merge pull request #10814 from akallabeth/sdl3-fix
...
[client,sdl] fix sdl3 SDL_GetDisplayBounds checks
2024-11-04 07:08:18 +01:00
akallabeth
f1877d15d4
[client,sdl] fix sdl3 SDL_GetDisplayBounds checks
...
Fix #10813 , return value changed to bool, so fix checks meant for SDL2
2024-11-03 21:21:05 +01:00
David Fort
070115e77b
Merge pull request #10806 from akallabeth/assert-fix
...
[core,security] fix assertion
2024-10-31 22:09:08 +01:00
akallabeth
1b177eeda9
[core,security] fix assertion
...
The assert for the buffer size required too many bytes in the output
buffer.
2024-10-31 13:11:57 +01:00
akallabeth
63121583eb
Merge pull request #10802 from akallabeth/compile-fix
...
[utils,helpers] revert removed define
2024-10-31 09:10:48 +01:00
akallabeth
6b6ae5fa9d
[utils,helpers] revert removed define
...
the define was conditionally unused. guard it now so it does not show up
as unused
2024-10-31 08:51:55 +01:00
akallabeth
2bdb059644
Merge pull request #10799 from akallabeth/generic-cleanups
...
[warnings] fix some compiler warnings
2024-10-30 19:32:22 +01:00
akallabeth
a5b64effab
[winpr,stream] add functions to write INT16_BE and INT32_BE
2024-10-30 19:18:04 +01:00
akallabeth
8bb5d598fc
[winpr,stream] fix missing comma
2024-10-30 17:10:03 +01:00
akallabeth
d232037e18
[winpr,asn1] fix writing integers
...
ASN1 integers are signed.
2024-10-30 16:55:56 +01:00
akallabeth
dc76879e0b
[warnings] fix some compiler warnings
...
* fix compiler warnings found in a lot of places
* add missing enum type for clipboard channel
* mark deallocator for winpr image function
2024-10-30 16:12:20 +01:00
akallabeth
d11be9025d
Merge pull request #10794 from akallabeth/internal-rc4
...
Internal rc4
2024-10-30 13:46:01 +01:00
akallabeth
8e33854c62
[tests] improve TestCommonAssistance
...
Compare encrypted passwords against reference values to ensure the
encryption routines work as expected
2024-10-30 13:22:59 +01:00
akallabeth
555d46f7e2
[winpr,crypto] deactivate key and IV lenght checks
...
OpenSSL does not support that in older versions, deactivate for the time
being.
2024-10-30 13:22:57 +01:00
akallabeth
2a41730f70
[common,assistance] replace winpr_Cipher_New
...
* use winpr_Cipher_NewEx where possible
* use winpr_RC4_New where RC4 is used
2024-10-30 13:22:55 +01:00
akallabeth
3ae0a10142
[core] replace usage of winpr_Cipher_New
...
prefer winpr_CipherNewEx to be on the safe side.
2024-10-30 13:22:52 +01:00
akallabeth
2b0b52be9e
[core,rdp] adjust warning for RC4
...
RC4 is not supported by winpr_Cipher_New but only by explicitly calling
winpr_RC4_New. Adjust the availability test to use the correct
functions.
2024-10-30 13:22:50 +01:00
akallabeth
1eac8fa15e
[winpr,crypto] deprecate winpr_Cipher_New
...
Deprecate function in favor of new winpr_CipherNewEx with explict key
and IV length parameters, adjust test cases to test both.
2024-10-30 13:22:45 +01:00
akallabeth
a7638bb0e4
Merge pull request #10798 from akallabeth/kbd-remap-fix
...
[utils,string] fix freerdp_extract_key_value
2024-10-29 17:20:52 +01:00
akallabeth
24ab4b297f
[utils,string] fix freerdp_extract_key_value
...
reset errno before strtoul to avoid aborting due to a previous errno
value from a different function call
2024-10-29 16:50:00 +01:00
akallabeth
e9b942f612
Merge pull request #10791 from akallabeth/vmconnect
...
[client,common] tighten /vmconnect checks
2024-10-28 10:04:54 +01:00
akallabeth
f0d0105d50
[client,common] tighten /vmconnect checks
...
Fixes #5300 :
* abort if +/-nego is used, /vmconnect overrides these.
* only set custom port if no /port or /v:host:port is in use allowing
overriding default port
2024-10-28 09:44:21 +01:00
Martin Fleisz
fa71cb18f0
Merge pull request #10793 from akallabeth/ntlm-fixes
...
[winpr,sspi] fix NULL NTLM password handling
2024-10-28 09:44:20 +01:00
akallabeth
882060031f
Merge pull request #10787 from akallabeth/proxy-arg-check
...
[server,proxy] stricter argument parsing
2024-10-28 09:32:30 +01:00
akallabeth
98335b7dde
Merge pull request #10792 from akallabeth/cov-assert-silence
...
[ci,assert] silence coverity on WINPR_ASSERT
2024-10-28 09:22:54 +01:00
akallabeth
c9a946f272
[winpr,sspi] fix NULL NTLM password handling
...
* Pass through the NULL, but fail as the hash matches the NULL hash
2024-10-28 09:09:56 +01:00
Martin Fleisz
56786ea606
Merge pull request #10786 from akallabeth/ntlm-fixes
...
Ntlm fixes
2024-10-28 09:04:57 +01:00
akallabeth
c513886914
[ci,assert] silence coverity on WINPR_ASSERT
...
silence covertiy NO_EFFECT with _Pragma when using WINPR_ASSERT.
We´ve got a lot of situations where a check is mostly useless when
functions are called correctly, but the check triggers on common errors.
So silence this warning on our perfectly fine usage situations
2024-10-28 08:36:23 +01:00
akallabeth
259b4f40c8
Merge pull request #10790 from akallabeth/ci
...
[compiler,macros] fix pragma by compiler support
2024-10-27 22:36:35 +01:00
akallabeth
a60ac2321d
[compiler,macros] fix pragma by compiler support
2024-10-27 21:58:58 +01:00
akallabeth
42178b6191
Merge pull request #10789 from akallabeth/ci
...
Ci
2024-10-27 20:35:11 +01:00
akallabeth
fd1c850c62
[ci,preloads] fix CMAKE_BUILD_TYPE
2024-10-27 20:07:41 +01:00