Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | TigerVNC 1.5.0v1.5.01.5-branch | Pierre Ossman | 2015-07-11 | 1 | -1/+1 |
| | |||||
* | TigerVNC 1.4.90 (1.5.0 beta)v1.4.90 | Pierre Ossman | 2015-06-18 | 1 | -1/+1 |
| | |||||
* | Default to -noreset in Xvnc | Pierre Ossman | 2015-05-04 | 1 | -1/+4 |
| | | | | | | We cannot handle a reset properly right now and are forced to terminate instead. Avoid surprising people with a dying Xvnc by changing the default to -noreset. | ||||
*-. | Merge branches 'noreset' and 'syslog' of https://github.com/michalsrb/tigervnc | Pierre Ossman | 2015-05-04 | 3 | -6/+13 |
|\ \ | |||||
| | * | Enable and document syslog logger in Xvnc. | Michal Srb | 2015-04-10 | 2 | -5/+7 |
| | | | |||||
| * | | Warn about not reseting Xvnc and terminate instead. | Michal Srb | 2015-04-01 | 1 | -1/+6 |
| |/ | | | | | | | | | VNC prevents X server restarting even when -reset is explicitly given. Print out message with explanation and terminate instead. | ||||
* / | Add -version argument to Xvnc | Pierre Ossman | 2015-04-27 | 1 | -6/+17 |
|/ | |||||
* | Merge branch 'multisocket-rebased' of https://github.com/twaugh/tigervnc | Pierre Ossman | 2015-03-17 | 4 | -35/+58 |
|\ | |||||
| * | Fixed IPv6 support. | Tim Waugh | 2015-03-13 | 4 | -35/+58 |
| | | | | | | | | | | | | | | | | | | | | | | | | The TcpListener constructor now takes a 'struct sockaddr*' instead of a string, and the createTcpListeners function creates TcpListener instances for an address based on the results from getaddrinfo(). The XserverDesktop class now takes a list of TcpListener instances for each of the RFB and HTTP sockets. The TcpListener::closeFd member variable is not used and has been removed. | ||||
* | | Merge branch 'upreqs' of https://github.com/CendioOssman/tigervnc | Pierre Ossman | 2015-03-12 | 7 | -750/+30 |
|\ \ | |/ |/| | | | | | | | Conflicts: contrib/packages/rpm/el5/SPECS/tigervnc.spec vncviewer/Viewport.cxx | ||||
| * | Remove code supporting Xorg older than 1.7 | Pierre Ossman | 2015-01-29 | 6 | -746/+28 |
| | | |||||
| * | Raise base Xorg requirement to 1.7 | Pierre Ossman | 2015-01-27 | 1 | -4/+2 |
| | | | | | | | | We're not testing or maintaining anything older than that. | ||||
* | | Link libvnc.so with '-z now' to make symbol resolution failures obvious. | Tim Waugh | 2015-02-26 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'cmdline-crash' of https://github.com/twaugh/tigervnc | Pierre Ossman | 2015-02-26 | 1 | -8/+28 |
|\ \ | |||||
| * | | Don't return without value here. | Tim Waugh | 2015-02-25 | 1 | -1/+1 |
| | | | | | | | | | | | | In particular, return 0 as this is a failure. | ||||
| * | | Abort argument processing on error. | Tim Waugh | 2015-02-18 | 1 | -8/+28 |
| | | | | | | | | | | | | This prevents e.g. 'Xvnc -screen x' crashing. | ||||
* | | | Check for out-of-memory when installing color map. | Tim Waugh | 2015-02-25 | 1 | -7/+4 |
| | | | | | | | | | | | | | | | | | | | | | Also remove Xalloc/Xfree definitions, using malloc/free directly instead. Note that vfbAllocateFramebufferMemory() does not need to check for failed allocations as it is the caller's responsibility to do so (and they do). | ||||
* | | | Updated to build against xorg-x11-server 1.17.x. | Tim Waugh | 2015-02-25 | 2 | -7/+9 |
| | | | |||||
* | | | Update copyright years | Pierre Ossman | 2015-02-20 | 1 | -1/+1 |
|/ / | |||||
* | | Fixes for build issues caused by recent restructuring | Brian P. Hinz | 2015-02-04 | 3 | -0/+12 |
| | | | | | | | | | | | | * Add typedef for XF86OptionPtr for Xorg < 112 * Include stddef.h to prevent missing size_t definition errors * Workaround for libtool convenience library issue | ||||
* | | Make the calls to va_list logging functions more explicit | Pierre Ossman | 2015-01-30 | 1 | -4/+4 |
| | | | | | | | | | | On some platforms va_list might be defined as something that causes ambiguity and results in the wrong function being called. | ||||
* | | Avoid shadowing variables | Pierre Ossman | 2015-01-29 | 1 | -21/+21 |
| | | |||||
* | | ddxInitGlobals() was removed from Xorg ages ago | Pierre Ossman | 2015-01-29 | 1 | -5/+0 |
| | | |||||
* | | ddxBeforeReset() is only conditionally included in the build | Pierre Ossman | 2015-01-29 | 1 | -0/+2 |
| | | |||||
* | | Properly define functions as not having any arguments | Pierre Ossman | 2015-01-29 | 1 | -5/+4 |
| | | |||||
* | | Remove declaration for variable already present in headers | Pierre Ossman | 2015-01-29 | 1 | -3/+0 |
| | | |||||
* | | Make sure we get prototypes for global DDX functions | Pierre Ossman | 2015-01-29 | 1 | -0/+4 |
| | | |||||
* | | Avoid complaints about unused variable in argument less requests | Pierre Ossman | 2015-01-29 | 1 | -3/+0 |
| | | | | | | | | | | | | The REQUEST macro is used to access variables in the request data, and if we don't then the compiler complains that the macro sets up variables that we never use. | ||||
* | | No need to cast these as they are already an appropriate type | Pierre Ossman | 2015-01-29 | 1 | -3/+3 |
| | | |||||
* | | Declare variables at the start of each block, as required | Pierre Ossman | 2015-01-29 | 2 | -19/+30 |
| | | |||||
* | | Use proper prototypes in headers for all our internal functions | Pierre Ossman | 2015-01-29 | 6 | -12/+13 |
| | | |||||
* | | Restructure code a bit to avoid warning about unused variable | Pierre Ossman | 2015-01-29 | 1 | -23/+20 |
|/ | |||||
* | More debug logging for screen layout changes | Pierre Ossman | 2015-01-26 | 1 | -0/+8 |
| | |||||
* | Restructure Xvnc/libvnc.so code to avoid C++ header hacks | Pierre Ossman | 2015-01-26 | 21 | -2451/+3177 |
| | | | | | | | | The internal Xorg headers are very incompatible with C++ and we've had to resort to all kinds of hacks in order to include them in our C++ code. This approach isn't really viable long term so restructure things so that we have a glue layer written in C that bridges the Xorg core with the RFB classes. | ||||
* | Band aid to work around inluding C headers in C++ code | Pierre Ossman | 2014-12-12 | 1 | -0/+3 |
| | |||||
* | Change development version to 1.4.80 | Pierre Ossman | 2014-11-19 | 1 | -1/+1 |
| | | | | | The 1.4 branch is now live, so change the version number of the development builds. | ||||
* | Fix pointer initialization to prevent NULL events. | Brian P. Hinz | 2014-09-29 | 1 | -4/+4 |
| | | | | Moved call to initEventq() into InitInputDevice() to prevent NULL events from being passed in. The surrounding IFDEF explains why Red Hat BZ bug #820443 just went away, EL6 bumped the version of xorg-x11-server-source to 1.13 at EL6.4. | ||||
* | Correct naming convention for some parameters | Pierre Ossman | 2014-09-17 | 1 | -4/+4 |
| | |||||
* | Avoid extra spacing in the generated man pages | Pierre Ossman | 2014-09-17 | 1 | -42/+42 |
| | |||||
* | Update server man pages to reflect current list of options | Pierre Ossman | 2014-09-17 | 1 | -17/+94 |
| | |||||
* | Remove the date from man pages | Pierre Ossman | 2014-09-17 | 1 | -1/+1 |
| | | | | It's not something we're keeping up to date anyway. | ||||
* | Clean up the authors section of the man pages | Pierre Ossman | 2014-09-17 | 1 | -3/+4 |
| | |||||
* | No need to declare 'display' here either. | Tim Waugh | 2014-09-04 | 1 | -1/+0 |
| | |||||
* | GCFuncs and GCOps are const since 1.16. | Tim Waugh | 2014-09-04 | 1 | -0/+9 |
| | |||||
* | No need to declare 'display' here. | Tim Waugh | 2014-09-04 | 2 | -3/+0 |
| | |||||
* | Another LoadExtensionList() that needs an #ifdef. | Tim Waugh | 2014-09-04 | 1 | -0/+4 |
| | |||||
* | LoadExtensionList is new in 1.16. | Tim Waugh | 2014-09-03 | 1 | -0/+4 |
| | |||||
* | Updated to build against xorg-x11-server 1.16.0. | Tim Waugh | 2014-09-03 | 7 | -35/+39 |
| | |||||
* | Update the cursor position using GetSpritePosition(). | Tim Waugh | 2014-07-14 | 1 | -1/+9 |
| | | | | | | | The module needs to correctly track the mouse position by querying the current X cursor position in InputDevice::getPointerPos(). Fixes: https://sourceforge.net/p/tigervnc/bug-tracker/152/ | ||||
* | Merge branch 'nocolourmap' of https://github.com/CendioOssman/tigervnc | Pierre Ossman | 2014-07-14 | 4 | -171/+35 |
|\ |