Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | Use static inline functions for OpenSSL 1.0 backport | Pavel Roskin | 2016-11-01 | 1 | -15/+26 | |
|/ / / | | | | | | | | | | | | | | | | | | | | | | 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. | |||||
* | | | Merge pull request #459 from Natureshadow/openssl110 | metalefty | 2016-11-01 | 1 | -27/+41 | |
|\ \ \ | | | | | | | | | Fix ssl_calls for OpenSSL 1.1.0 | |||||
| * | | | Add backwards compatibility to OpenSSL < 1.1.0. | Dominik George | 2016-10-27 | 1 | -0/+15 | |
| | | | | ||||||
| * | | | Fix ssl_calls for OpenSSL 1.1.0, closes #458. | Dominik George | 2016-10-27 | 1 | -31/+30 | |
| | | | | ||||||
* | | | | Merge pull request #463 from Natureshadow/config-patches | metalefty | 2016-10-29 | 1 | -6/+6 | |
|\ \ \ \ | | | | | | | | | | | Move -logfile /dev/null option for easier commenting in debug scenarios. | |||||
| * | | | | Move -logfile /dev/null option for easier commenting in debug scenarios. | Dominik George | 2016-10-28 | 1 | -6/+6 | |
|/ / / / | ||||||
* | | | | librfxcodec=2a90952 | Jay Sorg | 2016-10-27 | 1 | -0/+0 | |
|/ / / | ||||||
* | | | Merge pull request #451 from metalefty/buildx-keepalive-download | metalefty | 2016-10-27 | 1 | -24/+19 | |
|\ \ \ | |_|/ |/| | | buildx.sh: download tarballs using keepalive | |||||
| * | | buildx.sh: download tarballs using keepalive | Koichiro IWAO | 2016-10-21 | 1 | -23/+18 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | |||||
| * | | buildx.sh: simplify counting lines | Koichiro IWAO | 2016-10-21 | 1 | -1/+1 | |
| | | | ||||||
* | | | Merge pull request #450 from proski/memleak | metalefty | 2016-10-24 | 9 | -21/+34 | |
|\ \ \ | |_|/ |/| | | Fixing memory leaks | |||||
| * | | Fix memory leak in xrdp-sesman on config reload | Pavel Roskin | 2016-10-21 | 3 | -0/+22 | |
| | | | ||||||
| * | | Memory leak fix: keep X server path in the parameter list | Pavel Roskin | 2016-10-21 | 1 | -6/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | |||||
| * | | Call auth_end() exactly once in scp_v0_process() | Pavel Roskin | 2016-10-21 | 1 | -5/+1 | |
| | | | | | | | | | | | | As discovered by Valgrind, it wasn't called at all in case of a successful session creation, which leaked memory. | |||||
| * | | Fix memory leak: free session data | Pavel Roskin | 2016-10-21 | 4 | -10/+8 | |
| | | | | | | | | | | | | | | | | | | | | | 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. | |||||
* | | | Merge pull request #453 from itamarjp/devel | metalefty | 2016-10-24 | 3 | -0/+784 | |
|\ \ \ | |/ / |/| | | Add es_ES layout support #88 | |||||
| * | | add km-040a.ini keyboard | Itamar Reis Peixoto | 2016-10-21 | 2 | -0/+660 | |
| | | | ||||||
| * | | add keymap-names.txt | Itamar Reis Peixoto | 2016-10-21 | 1 | -0/+124 | |
| |/ | ||||||
* | | Merge pull request #445 from proski/noextra | Itamar Reis Peixoto | 2016-10-21 | 7 | -124/+68 | |
|\ \ | |/ |/| | Avoid using non-standard Automake variables starting with "EXTRA" | |||||
| * | Get rid of EXTRA_LIBS, use variables with more specific names | Pavel Roskin | 2016-10-20 | 5 | -27/+17 | |
| | | ||||||
| * | Eliminate EXTRA_FLAGS, it's a poor name, use AM_LDFLAGS | Pavel Roskin | 2016-10-20 | 5 | -20/+4 | |
| | | ||||||
| * | Merge EXTRA_DEFINES and EXTRA_INCLUDES into AM_CPPFLAGS | Pavel Roskin | 2016-10-20 | 7 | -80/+50 | |
|/ | | | | | | | | | | 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. | |||||
* | Update file-loc.txt | Koichiro IWAO | 2016-10-20 | 1 | -10/+27 | |
| | ||||||
* | Merge pull request #444 from proski/trivial | metalefty | 2016-10-20 | 32 | -123/+89 | |
|\ | | | | | Simple changes, mostly log messages and documentation | |||||
| * | Use const pointers in function arguments when possible | Pavel Roskin | 2016-10-17 | 18 | -34/+36 | |
| | | ||||||
| * | Remove text2bool() from log.h, there is no such function | Pavel Roskin | 2016-10-17 | 1 | -10/+0 | |
| | | ||||||
| * | Leave only one "autorun" in xrdp.ini, improve comment | Pavel Roskin | 2016-10-17 | 1 | -2/+3 | |
| | | ||||||
| * | Fix wrong comments in sesman config printing code | Pavel Roskin | 2016-10-17 | 1 | -4/+4 | |
| | | ||||||
| * | Fix incorrect description of auth_userpass() return value | Pavel Roskin | 2016-10-17 | 1 | -1/+1 | |
| | | ||||||
| * | Don't use final newline in log calls, it's already appended | Pavel Roskin | 2016-10-17 | 6 | -19/+19 | |
| | | ||||||
| * | Log malloc errors with LOG_LEVEL_ERROR | Pavel Roskin | 2016-10-17 | 2 | -2/+2 | |
| | | ||||||
| * | Don't use term "missing" when using default files, it's too alarming | Pavel Roskin | 2016-10-17 | 1 | -7/+6 | |
| | | | | | | | | Also improve messages when non-absolute path is rejected. | |||||
| * | Merge prog_std.txt into coding_style.md | Pavel Roskin | 2016-10-17 | 4 | -44/+18 | |
|/ | ||||||
* | Merge pull request #434 from proski/buildx | metalefty | 2016-10-17 | 4 | -39/+30 | |
|\ | | | | | Fixes for x11rdp build | |||||
| * | Move libXdmcp above libxcb, libxcb can use it | Pavel Roskin | 2016-10-09 | 1 | -1/+1 | |
| | | ||||||
| * | Add *.a to top .gitignore, add xorg/X11R7.6/.gitignore | Pavel Roskin | 2016-10-09 | 2 | -0/+4 | |
| | | ||||||
| * | buildx.sh: force forward patch, don't ask whether to revert | Pavel Roskin | 2016-10-09 | 1 | -1/+1 | |
| | | ||||||
| * | buildx.sh: remove special case for python, it's not built anymore | Pavel Roskin | 2016-10-08 | 1 | -8/+0 | |
| | | ||||||
| * | Change compilation order to resolve dependencies | Pavel Roskin | 2016-10-08 | 1 | -7/+7 | |
| | | | | | | | | | | With this change, buildx.sh succeeds on a system without pre-existing X11 installation. | |||||
| * | buildx.sh: utilize all available CPUs when compiling | Pavel Roskin | 2016-10-08 | 1 | -1/+5 | |
| | | ||||||
| * | buildx.sh: "clean" is a constant string, not a semantic variable | Pavel Roskin | 2016-10-08 | 1 | -1/+1 | |
| | | ||||||
| * | buildx.sh: use "mkdir -p" to create $PREFIX_DIR, don't retry | Pavel Roskin | 2016-10-08 | 1 | -20/+11 | |
| | | | | | | | | Improve messages about $PREFIX_DIR | |||||
* | | xrdp: librfxcodc link fix | Koichiro IWAO | 2016-10-13 | 1 | -1/+1 | |
| | | | | | | | | as same fix as done in 4a815d5 for libpainter | |||||
* | | Merge pull request #435 from metalefty/update-submodules | jsorg71 | 2016-10-12 | 2 | -0/+0 | |
|\ \ | |/ |/| | Update xorgxrdp and librfxcodec | |||||
| * | librfxcodec=845ee8c | Koichiro IWAO | 2016-10-09 | 1 | -0/+0 | |
| | | ||||||
| * | xorgxrdp=822e3b8 | Koichiro IWAO | 2016-10-09 | 1 | -0/+0 | |
|/ | ||||||
* | Merge pull request #431 from metalefty/remove-python-from-x11rdp | metalefty | 2016-10-06 | 1 | -1/+0 | |
|\ | | | | | X11rdp: remove python as it isn't really needed these days | |||||
| * | X11rdp: remove python as it isn't really needed these days | Koichiro IWAO | 2016-10-05 | 1 | -1/+0 | |
|/ | | | | Closes #399. | |||||
* | 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 | |
| |