| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
X11rdp build system fixes
|
| | |
|
| | |
|
|/
|
| |
Use BINBASE for the binary install path.
|
|
|
|
| |
install
|
| |
|
| |
|
|\
| |
| | |
Use g_get_strerror() instead of strerror(errno) for portability
|
|/ |
|
|\
| |
| | |
Use km-0000yyyy.ini if km-xxxxyyyy.ini doen't exist
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
upper 16 bits of keylayout value indicates keyboard layout.
lower 16 bits of keylayout value indicates country/language.
If the keymap file doesn't match exactly to keylayout value,
the typical keyboard of the country/language should be used.
For example [1]:
0x00000409: US English
0x00010409: US Dvorak
0x00020409: US International
0x00030409: US Dvorak for left hand
0x00040409: US Dvorak for right hang
0x0000040e: Hungarian
0x0001040e: Hungarian 101-key
[1] https://msdn.microsoft.com/windows/hardware/commercialize/manufacture/desktop/windows-language-pack-default-values
|
|\ \
| | |
| | | |
Install headers used by X11rdp and xorgxrdp
|
|/ /
| |
| |
| |
| | |
Installing the headers makes it possible to compile xorgxrdp as a
separate package, without xrdp sources.
|
|\ \
| |/
|/| |
chansrv: change chansrv log path to ${XDG_DATA_HOME}/xrdp
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
like Xorg's logfile is written to ${XDG_DATA_HOME}/xorg/Xorg.n.log.
If XDG_DATA_HOME is not defined, the log path will be
${HOME}/.local/share/xrdp.
|
|\ \
| | |
| | | |
add Finnish keyboard
|
|/ /
| |
| |
| | |
Closes #70
|
|\ \
| | |
| | | |
Switch to 8 hex digit keymapfile
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
as the value keyboardLayout is actually 32-bit unsigned integer.
See [MS-RDPBCGR] - v20160714 p.45.
|
|\ \ \
| | | |
| | | | |
Simplify names of xrdp.ini sections, rename "Session Manager" to "Xorg"
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
Make section names equal to the names in the "name=" setting to avoid
confusion and the need to renumber sections. Avoid "sesman-" in the
names, it's not helpful to the user. Move "Xorg" just below "X11rdp",
that would give xorgxrdp more visibility.
|
|\ \ \
| | | |
| | | | |
Use static inline functions for OpenSSL 1.0 backport
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Conditional preprocessor directives spread throughout the code set a bad
example.
The new backport code is located in one place. The compiler checks
argument types. The backport code has no access to the caller variables.
The main code has all advantages of the new, more compact API.
|
|\ \ \
| | | |
| | | | |
Fix ssl_calls for OpenSSL 1.1.0
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Move -logfile /dev/null option for easier commenting in debug scenarios.
|
|/ / / / |
|
|/ / / |
|
|\ \ \
| |_|/
|/| | |
buildx.sh: download tarballs using keepalive
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Executing wget like
wget http://example.com/file1 http://example.com/file2 ...
can do HTTP keepalive.
Quit calling wget with single file. Downloading multiple files in one
http connection is a little bit faster than executing wget more than
100 times. And parallelly execute two instances of wget to increase
download speed.
|
| | | |
|
|\ \ \
| |_|/
|/| | |
Fixing memory leaks
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
g_cfg->xorg_params, g_cfg->vnc_params and g_cfg->rdp_params don't have
auto_free enabled, so removing an item from one of those lists won't free
its contents.
It's better not to change those lists, as they represent the actual
config file and could be reused. Instead, omit the 0th parameter (the
executable path) from copying to xserver_params.
Found by Valgrind.
|
| | |
| | |
| | |
| | | |
As discovered by Valgrind, it wasn't called at all in case of a
successful session creation, which leaked memory.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Call scp_session_destroy() in the functions that call
scp_session_create() and nowhere else.
As found by Valgrind, the session data is not freed if the session is
created successfully.
|
|\ \ \
| |/ /
|/| | |
Add es_ES layout support #88
|
| | | |
|
| |/ |
|
|\ \
| |/
|/| |
Avoid using non-standard Automake variables starting with "EXTRA"
|
| | |
|
| | |
|
|/
|
|
|
|
|
|
|
|
| |
AM_CPPFLAGS is a documented Automake variable for C preprocessor flags
that should not be overridden when compiling the package.
There is no need to have two additional variables that are ultimately
merged into AM_CPPFLAGS.
Their names are also confusing. EXTDA_DIST is a documented Automake
variable. Everything else that starts with "EXTRA" is not.
|
| |
|
|\
| |
| | |
Simple changes, mostly log messages and documentation
|
| | |
|