Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | show more helpful message if xrdp-dis failed | Koichiro IWAO | 2018-09-11 | 1 | -0/+5 |
| | |||||
* | sesrun support start other session based on session_code argument | Aiden Luo | 2018-04-20 | 1 | -3/+6 |
| | |||||
* | Rename file_loc.h to xrdp_sockets.h, install it | Pavel Roskin | 2017-03-28 | 1 | -1/+1 |
| | | | | Include xrdp_sockets.h directly, not through headers. | ||||
* | Make socket directory configurable, don't hardcode /tmp/.xrdp | Pavel Roskin | 2017-03-17 | 2 | -1/+4 |
| | | | | | | | | | | Use XRDP_SOCKET_PATH in file_loc.h Don't define any non-socket paths in file_loc.h, they should come from the makefiles. Define all paths unconditionally, they should not be defined elsewhere. Pass XRDP_SOCKET_PATH as environment variable to the backends. | ||||
* | Eliminate APP_CC and DEFAULT_CC | Pavel Roskin | 2017-03-14 | 3 | -7/+7 |
| | |||||
* | Include config_ac.h from all source files | Pavel Roskin | 2017-03-04 | 7 | -0/+28 |
| | |||||
* | xrdp-sesadmin: show sessions in human readable format | Pavel Roskin | 2017-02-02 | 1 | -7/+15 |
| | |||||
* | xrdp-sesadmin: refactor array access | Pavel Roskin | 2017-02-02 | 1 | -4/+7 |
| | |||||
* | xrdp-sesadmin: fix crash on network or authentication error | Pavel Roskin | 2017-02-02 | 1 | -5/+8 |
| | | | | | | | | If scp_v1c_mng_get_session_list() returns an error, report it to the user and exit. Session list is not initialized in that case and should not be freed. g_free() already checks its argument for being to NULL, remove an extra check. | ||||
* | Use "void" for empty argument list in declarations | Pavel Roskin | 2017-01-05 | 1 | -2/+2 |
| | | | | | | In C, an empty argument list in a declaration means that the function can accept any arguments. Use "void" instead, it means "no arguments". C++ treats void and empty list as "no arguments". | ||||
* | fix build with --enable-xrdpdebug=yes | volth | 2017-01-04 | 1 | -2/+0 |
| | |||||
* | fix build with --enable-xrdpdebug=yes | volth | 2017-01-04 | 1 | -0/+6 |
| | |||||
* | Fix help text to match the manual and the actual behavior | Pavel Roskin | 2016-12-19 | 1 | -2/+2 |
| | | | | | The help text mentions "LIST" and "KILL" commands, but the manual says "list" and "kill", and the command line parser expects the later. | ||||
* | Don't use final newline in log calls, it's already appended | Pavel Roskin | 2016-10-17 | 1 | -4/+4 |
| | |||||
* | sesrun: remove unused g_sck and write-only g_pid | Pavel Roskin | 2016-09-08 | 1 | -4/+0 |
| | |||||
* | Use enum logLevels consistently for log levels | Pavel Roskin | 2016-07-08 | 1 | -1/+1 |
| | |||||
* | Make program_name constant, don't duplicate or free it | Pavel Roskin | 2016-07-08 | 2 | -2/+2 |
| | |||||
* | Fix scp_init() invocation, it takes no arguments | Pavel Roskin | 2016-07-08 | 2 | -2/+2 |
| | |||||
* | Fix all format warnings and some unused variable warnings | Jay Sorg | 2016-03-14 | 2 | -3/+3 |
| | |||||
* | Move headers from EXTRA_DIST to sources, sort alphabetically | Pavel Roskin | 2016-02-21 | 1 | -3/+2 |
| | | | | There should be no functional difference. | ||||
* | xrdp-sesadmin: show help and exit if mandatory arguments are not given | Pavel Roskin | 2016-02-14 | 1 | -2/+9 |
| | | | | Don't mark password as mandatory, it's asked if not provided on the command line. | ||||
* | Fix typos | Pavel Roskin | 2016-02-13 | 2 | -3/+3 |
| | |||||
* | xcon: include unistd.h, it's needed for select() on MacOS | Pavel Roskin | 2016-02-12 | 1 | -0/+1 |
| | |||||
* | xcon: include sys/types.h for select() and related macros | Pavel Roskin | 2016-01-31 | 1 | -0/+1 |
| | |||||
* | Use standard autotools means to detect X11 | Pavel Roskin | 2016-01-30 | 1 | -2/+6 |
| | | | | | | | | Use AC_PATH_XTRA to search for X11 in configure.ac. In Makefiles, add X_CFLAGS to AM_CFLAGS for the source compilation. Add X_LIBS to LDFLAGS. Add X_PRE_LIBS and X_EXTRA_LIBS to LDADD. With this patch, X Windows system is correctly detected on Mac OS X. | ||||
* | Merge AM_CFLAGS and INCLUDES info AM_CPPFLAGS | Pavel Roskin | 2016-01-29 | 1 | -4/+2 |
| | | | | | | | | | AM_CPPFLAGS is for flags passed to the preprocessor, such as defines and includes. AM_CFLAGS is for flags affecting the compiler, such as debug and optimization settings. INCLUDES is an obsolete name. Users can pass INCLUDES and break compilation. AM_CPPFLAGS is more explicit that the flags come from Automake and should not be overridden. | ||||
* | Don't use a symlink where #include would suffice | Pavel Roskin | 2016-01-26 | 1 | -0/+1 |
| | | | | | | | | | | | | | Absolute symlinks break when the source is moved to another location. In the best case, the symlink will be replaced with a copy, but that creates code duplication. A user who got the packaged source may decide to change one config.c without realizing that another config.c will get the same changes. Don't ignore config.c, it's a regular source file now, albeit very short. Testing done: compiled inside and outside build directory. | ||||
* | add historic GPLv2+ to Simone’s files | mirabilos | 2015-08-26 | 2 | -0/+26 |
| | | | | this becomes GPLv3+ when combined with Apache v2 licenced files | ||||
* | coverity: improper use of negative value | Laxmikant Rashinkar | 2014-07-26 | 3 | -0/+12 |
| | |||||
* | coverity: fixed issue argument cannot be negative | Laxmikant Rashinkar | 2014-07-23 | 1 | -1/+6 |
| | |||||
* | coverity: fixed resolution leak issues | Laxmikant Rashinkar | 2014-07-19 | 1 | -5/+5 |
| | |||||
* | copyright year update | Jay Sorg | 2013-06-08 | 5 | -5/+5 |
| | |||||
* | sesman/tools: Disable debug tools | Philipp Hahn | 2013-01-28 | 1 | -2/+4 |
| | | | | | sestest and xcon look like debugging tools. Don't install them by default. | ||||
* | o moved from GNU General Public License to Apache License, Version 2.0 | Laxmikant Rashinkar | 2012-09-19 | 7 | -604/+652 |
| | | | | | o applied new coding standards to all .c files o moved some files around | ||||
* | sesman/tools: added xcon | Jay Sorg | 2012-07-31 | 2 | -1/+44 |
| | |||||
* | autotools: change top_srcdir to top_builddir for LIBADD | Jay Sorg | 2012-07-13 | 1 | -6/+5 |
| | |||||
* | no logic changes, remove warnings and coding style changes | Jay Sorg | 2012-06-10 | 1 | -1/+1 |
| | |||||
* | Support for invalidate request sent from clients added | norrarvid | 2012-06-05 | 1 | -1/+1 |
| | |||||
* | Initial syslog support in XRDP | norrarvid | 2012-05-27 | 2 | -5/+5 |
| | |||||
* | move temp files from /tmp to /tmp/.xrdp | Jay Sorg | 2012-02-11 | 1 | -1/+1 |
| | |||||
* | added disconnect tool | Jay Sorg | 2011-07-13 | 2 | -1/+70 |
| | |||||
* | warnings | Jay Sorg | 2011-07-05 | 1 | -9/+25 |
| | |||||
* | include missing files in make dist | Itamar Reis Peixoto | 2010-11-20 | 1 | -0/+1 |
| | |||||
* | update copyright year | jsorg71 | 2010-07-04 | 3 | -3/+3 |
| | |||||
* | patch from Christoph Brill - Don't always assume 3350 as the sesman port | jsorg71 | 2009-08-05 | 1 | -1/+1 |
| | |||||
* | autotools fix and file_loc.h simplified | jsorg71 | 2009-05-19 | 1 | -0/+7 |
| | |||||
* | remove old makefiles | jsorg71 | 2008-12-16 | 2 | -127/+0 |
| | |||||
* | fix for older auto tools | jsorg71 | 2008-11-02 | 1 | -1/+1 |
| | |||||
* | added first management code | ilsimo | 2008-09-11 | 3 | -3/+206 |
| | | | | | added a rough management tool fixes in session.c | ||||
* | common change | jsorg71 | 2008-08-12 | 1 | -2/+2 |
| |