Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | config: use semicolon to comment out descriptions in config files | Koichiro IWAO | 2016-11-16 | 2 | -98/+98 |
| | | | | | | | | and use number sign to comment out actual configurations. For example: ; if set to true, enables foobar #foobar=true | ||||
* | config: Capitalize section title to fit documents | Koichiro IWAO | 2016-11-16 | 1 | -2/+2 |
| | |||||
* | config: unify all boolean values in config to true/false | Koichiro IWAO | 2016-11-16 | 1 | -11/+11 |
| | |||||
* | change xrdp.ini security_layer=negotiate and auto generate tls keys on make ↵ | Jay Sorg | 2016-11-11 | 1 | -1/+1 |
| | | | | install | ||||
* | Use km-0000yyyy.ini if km-xxxxyyyy.ini doen't exist | Koichiro IWAO | 2016-11-04 | 1 | -2/+14 |
| | | | | | | | | | | | | | | | | | | | 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 | ||||
* | Merge pull request #437 from metalefty/switch-to-8-hex-digit-keymap-file | Itamar Reis Peixoto | 2016-11-02 | 1 | -3/+3 |
|\ | | | | | Switch to 8 hex digit keymapfile | ||||
| * | Switch to 8 hex digit keymapfile | Koichiro IWAO | 2016-10-24 | 1 | -3/+3 |
| | | | | | | | | | | 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" | Pavel Roskin | 2016-11-01 | 1 | -20/+20 |
|/ | | | | | | 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. | ||||
* | Get rid of EXTRA_LIBS, use variables with more specific names | Pavel Roskin | 2016-10-20 | 1 | -5/+5 |
| | |||||
* | Eliminate EXTRA_FLAGS, it's a poor name, use AM_LDFLAGS | Pavel Roskin | 2016-10-20 | 1 | -4/+0 |
| | |||||
* | Merge EXTRA_DEFINES and EXTRA_INCLUDES into AM_CPPFLAGS | Pavel Roskin | 2016-10-20 | 1 | -19/+16 |
| | | | | | | | | | | 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. | ||||
* | Leave only one "autorun" in xrdp.ini, improve comment | Pavel Roskin | 2016-10-17 | 1 | -2/+3 |
| | |||||
* | Don't use final newline in log calls, it's already appended | Pavel Roskin | 2016-10-17 | 1 | -4/+4 |
| | |||||
* | xrdp: librfxcodc link fix | Koichiro IWAO | 2016-10-13 | 1 | -1/+1 |
| | | | | as same fix as done in 4a815d5 for libpainter | ||||
* | remove a debug message | Jay Sorg | 2016-10-03 | 1 | -1/+0 |
| | |||||
* | xrdp: handle 3 byte PDU | Jay Sorg | 2016-10-03 | 1 | -5/+43 |
| | |||||
* | Improve message about listening socket is a wrong state | Pavel Roskin | 2016-09-08 | 1 | -2/+2 |
| | |||||
* | new options for xrdp.ini disableSSlv3=yes and tls_ciphers=HIGH and code to ↵ | Alex Illsley | 2016-08-25 | 1 | -0/+4 |
| | | | | implement | ||||
* | add region intersect | Jay Sorg | 2016-08-08 | 2 | -2/+23 |
| | |||||
* | add more advances region support using pixman | Jay Sorg | 2016-08-08 | 4 | -250/+50 |
| | |||||
* | Merge pull request #390 from proski/june21 | jsorg71 | 2016-08-05 | 11 | -108/+106 |
|\ | | | | | Cleanups and C++ compatibility | ||||
| * | Cast fifo_remove_item() to XRDP_ENC_DATA* or XRDP_ENC_DATA_DONE* as needed | Pavel Roskin | 2016-07-08 | 1 | -2/+2 |
| | | |||||
| * | Use g_new or g_new0 when C++ compiler would complain about implicit cast | Pavel Roskin | 2016-07-08 | 2 | -3/+3 |
| | | |||||
| * | Use const unsigned for hex arrays | Pavel Roskin | 2016-07-08 | 1 | -1/+1 |
| | | | | | | Some constants are too big for the signed type. | ||||
| * | Fix warnings detected by -Wwrite-strings | Pavel Roskin | 2016-07-08 | 5 | -11/+12 |
| | | |||||
| * | Shorten and clarify log window messages | Pavel Roskin | 2016-07-08 | 2 | -6/+4 |
| | | | | | | | | | | Specify display in the "login failed" message. Print the section name that wasn't found. Remove stdout message about missing section, xrdp_wm_log_msg() already writes to stdout. | ||||
| * | Make xrdp_wm_log_msg() log its output | Pavel Roskin | 2016-07-08 | 3 | -63/+64 |
| | | | | | | | | Accept variable arguments and the log level in xrdp_wm_log_msg(). Remove logging that is done automatically now. | ||||
| * | Rewrite add_string_to_logwindow() | Pavel Roskin | 2016-07-08 | 1 | -12/+11 |
| | | | | | | | | Make static, fix formatting, shorten some variable names, use += to add to variable, accept immutable strings. | ||||
| * | Fix format warnings in log_message() calls | Pavel Roskin | 2016-06-21 | 3 | -14/+11 |
| | | |||||
| * | Report pid and listening address/port for xrdp and xrdp-sesman | Pavel Roskin | 2016-06-21 | 2 | -0/+3 |
| | | | | | | | | | | | | For xrdp-sesman, don't report that the daemon is listening to a port if it fails to attach to that port. Don't use LOG_LEVEL_ALWAYS for startup message, it's not a critical error. | ||||
| * | Fix incorrect use of "it's" and "its", adjust wording | Pavel Roskin | 2016-06-21 | 4 | -7/+6 |
| | | |||||
* | | Update xrdp_keyboard.ini | Akira Taniguchi | 2016-06-29 | 1 | -1/+1 |
|/ | |||||
* | xrdp_wm: fix for multimon, draw login window and log window on primary | speidy | 2016-05-17 | 2 | -23/+32 |
| | | | monitor | ||||
* | remove tabs | Jay Sorg | 2016-05-16 | 2 | -10/+10 |
| | |||||
* | remove tabs | Jay Sorg | 2016-05-16 | 1 | -9/+9 |
| | |||||
* | xrdp_wm: in multimon scenario, draw log window and login window on | speidy | 2016-05-12 | 2 | -5/+44 |
| | | | | primary monitor | ||||
* | Remove extraneous color initialization | Pavel Roskin | 2016-05-05 | 1 | -1/+0 |
| | |||||
* | Typo fixes | Pavel Roskin | 2016-05-04 | 7 | -27/+27 |
| | |||||
* | Fix format warnings caused by g_writeln("") | Pavel Roskin | 2016-04-21 | 1 | -12/+12 |
| | |||||
* | remove some warnings | Jay Sorg | 2016-04-09 | 2 | -6/+3 |
| | |||||
* | remove some warnings | Jay Sorg | 2016-04-09 | 1 | -6/+6 |
| | |||||
* | Fix compile error "format not a string literal and no format arguments ↵ | NerdKnight | 2016-03-28 | 2 | -2/+2 |
| | | | | [-Werror=format-security]" | ||||
* | Merge pull request #341 from proski/sanity-checks | jsorg71 | 2016-03-16 | 2 | -34/+63 |
|\ | | | | | Sanity checks | ||||
| * | Be more specific in error messages about PID file location | Pavel Roskin | 2016-03-03 | 2 | -4/+4 |
| | | |||||
| * | Check if rsakeys.ini exists on startup, exit if it's missing | Pavel Roskin | 2016-03-03 | 1 | -0/+8 |
| | | |||||
| * | Move all sanity checks to a separate function xrdp_sanity_check() | Pavel Roskin | 2016-03-03 | 1 | -30/+51 |
| | | |||||
* | | Fix all format warnings and some unused variable warnings | Jay Sorg | 2016-03-14 | 1 | -1/+1 |
| | | |||||
* | | Don't attempt to intercept SIGKILL, it doesn't work on any OS | Jay Sorg | 2016-03-14 | 2 | -2/+0 |
|/ | |||||
* | Use "dist_" prefix to minimize use of EXTRA_DIST | Pavel Roskin | 2016-02-22 | 1 | -4/+2 |
| | | | "dist" is ignored in presense of "noinst", so keep noinst_man_MANS. | ||||
* | Move headers from EXTRA_DIST to sources, sort alphabetically | Pavel Roskin | 2016-02-21 | 1 | -5/+7 |
| | | | | There should be no functional difference. |