summaryrefslogtreecommitdiffstats
path: root/xrdp
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of EXTRA_LIBS, use variables with more specific namesPavel Roskin2016-10-201-5/+5
|
* Eliminate EXTRA_FLAGS, it's a poor name, use AM_LDFLAGSPavel Roskin2016-10-201-4/+0
|
* Merge EXTRA_DEFINES and EXTRA_INCLUDES into AM_CPPFLAGSPavel Roskin2016-10-201-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 commentPavel Roskin2016-10-171-2/+3
|
* Don't use final newline in log calls, it's already appendedPavel Roskin2016-10-171-4/+4
|
* xrdp: librfxcodc link fixKoichiro IWAO2016-10-131-1/+1
| | | | as same fix as done in 4a815d5 for libpainter
* remove a debug messageJay Sorg2016-10-031-1/+0
|
* xrdp: handle 3 byte PDUJay Sorg2016-10-031-5/+43
|
* Improve message about listening socket is a wrong statePavel Roskin2016-09-081-2/+2
|
* new options for xrdp.ini disableSSlv3=yes and tls_ciphers=HIGH and code to ↵Alex Illsley2016-08-251-0/+4
| | | | implement
* add region intersectJay Sorg2016-08-082-2/+23
|
* add more advances region support using pixmanJay Sorg2016-08-084-250/+50
|
* Merge pull request #390 from proski/june21jsorg712016-08-0511-108/+106
|\ | | | | Cleanups and C++ compatibility
| * Cast fifo_remove_item() to XRDP_ENC_DATA* or XRDP_ENC_DATA_DONE* as neededPavel Roskin2016-07-081-2/+2
| |
| * Use g_new or g_new0 when C++ compiler would complain about implicit castPavel Roskin2016-07-082-3/+3
| |
| * Use const unsigned for hex arraysPavel Roskin2016-07-081-1/+1
| | | | | | Some constants are too big for the signed type.
| * Fix warnings detected by -Wwrite-stringsPavel Roskin2016-07-085-11/+12
| |
| * Shorten and clarify log window messagesPavel Roskin2016-07-082-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 outputPavel Roskin2016-07-083-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 Roskin2016-07-081-12/+11
| | | | | | | | Make static, fix formatting, shorten some variable names, use += to add to variable, accept immutable strings.
| * Fix format warnings in log_message() callsPavel Roskin2016-06-213-14/+11
| |
| * Report pid and listening address/port for xrdp and xrdp-sesmanPavel Roskin2016-06-212-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 wordingPavel Roskin2016-06-214-7/+6
| |
* | Update xrdp_keyboard.iniAkira Taniguchi2016-06-291-1/+1
|/
* xrdp_wm: fix for multimon, draw login window and log window on primaryspeidy2016-05-172-23/+32
| | | monitor
* remove tabsJay Sorg2016-05-162-10/+10
|
* remove tabsJay Sorg2016-05-161-9/+9
|
* xrdp_wm: in multimon scenario, draw log window and login window onspeidy2016-05-122-5/+44
| | | | primary monitor
* Remove extraneous color initializationPavel Roskin2016-05-051-1/+0
|
* Typo fixesPavel Roskin2016-05-047-27/+27
|
* Fix format warnings caused by g_writeln("")Pavel Roskin2016-04-211-12/+12
|
* remove some warningsJay Sorg2016-04-092-6/+3
|
* remove some warningsJay Sorg2016-04-091-6/+6
|
* Fix compile error "format not a string literal and no format arguments ↵NerdKnight2016-03-282-2/+2
| | | | [-Werror=format-security]"
* Merge pull request #341 from proski/sanity-checksjsorg712016-03-162-34/+63
|\ | | | | Sanity checks
| * Be more specific in error messages about PID file locationPavel Roskin2016-03-032-4/+4
| |
| * Check if rsakeys.ini exists on startup, exit if it's missingPavel Roskin2016-03-031-0/+8
| |
| * Move all sanity checks to a separate function xrdp_sanity_check()Pavel Roskin2016-03-031-30/+51
| |
* | Fix all format warnings and some unused variable warningsJay Sorg2016-03-141-1/+1
| |
* | Don't attempt to intercept SIGKILL, it doesn't work on any OSJay Sorg2016-03-142-2/+0
|/
* Use "dist_" prefix to minimize use of EXTRA_DISTPavel Roskin2016-02-221-4/+2
| | | "dist" is ignored in presense of "noinst", so keep noinst_man_MANS.
* Move headers from EXTRA_DIST to sources, sort alphabeticallyPavel Roskin2016-02-211-5/+7
| | | | There should be no functional difference.
* Fix typosPavel Roskin2016-02-138-12/+12
|
* Use lowercase program names for syslogPavel Roskin2016-02-131-1/+1
| | | Other programs typically use the same case as their execulables.
* Stop redefining libdir, use moduledir for ${libdir}/xrdpPavel Roskin2016-02-122-2/+2
| | | | | | | libdir is for shared and static libraries. Some xrdp libraries are loaded dynamically from a non-standard directory, so they are used like modules. Having separate libdir and moduledir would eventually allow to separate dynamically loaded modules from shared libraries.
* Add missing spaces in the strings that are split for line wrappingPavel Roskin2016-02-121-2/+2
|
* Spell "return value", not "returnvalue"Pavel Roskin2016-02-071-1/+1
|
* Declare xrdp_mm_frame_ack() in xrdp.h, it's used in xrdp_wm.cPavel Roskin2016-01-311-0/+2
|
* More spelling fixes found by codespell and aspellPavel Roskin2016-01-301-1/+1
|
* Replace "charactor" with "character" everywherePavel Roskin2016-01-303-8/+8
|