summaryrefslogtreecommitdiffstats
path: root/unix/xserver
Commit message (Collapse)AuthorAgeFilesLines
* TigerVNC 1.11.90 (1.12.0 beta)v1.11.90Pierre Ossman2021-09-081-1/+1
|
*---. Merge branches 'host-name-max', 'fix-build-viewer-off' and ↵Pierre Ossman2021-07-237-22/+17
|\ \ \ | | | | | | | | | | | | 'fix-case-insensitive-fs' of https://github.com/arichardson/tigervnc
| | | * Rename Input.h to vncInput.h to fix building on case-insensitive FSAlex Richardson2021-07-156-9/+8
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I am cross-compiling from macOS for a FreeBSD-derived system so my host file system is case insensitive but the target isn't. Without this change I get the following warnings which show that the vnc "Input.h" is being included from mi/mi.h instead of the xserver "input.h": ``` In file included from /Users/alex/cheri/xvnc-server/hw/vnc/Input.c:33: /Users/alex/cheri/xvnc-server/mi/mi.h:55:10: warning: non-portable path to file '"Input.h"'; specified path differs in case from file name on disk [-Wnonportable-include-path] #include "input.h" ^~~~~~~~~ "Input.h" ```
| * / Fix build on systems without HOST_NAME_MAXAlex Richardson2021-07-151-13/+9
| |/ | | | | | | | | | | Some operating systems such as FreeBSD don't define a HOST_NAME_MAX macro. The portable approach to determine the real host name limit is calling sysconf(_SC_HOST_NAME_MAX) so do that instead.
* / Keep ownership of second selection when first is lostPierre Ossman2021-07-201-9/+61
|/ | | | | | | | | | | | | | This fixes regression introduced by the extended clipboard extension. Previously it was possible for the server to hold on to the CLIPBOARD selection even if another application took ownership of PRIMARY. This is important to handle the common use case of selecting something in order to paste over it. The new request based model doesn't readily support this as we assume the client has lost its data once we push the new PRIMARY selection to it. So to handle this we have the maintain a cache of the client's data, and make sure to fill that cache before we do anything that might cause the client to lose the data.
* Merge branch 'utilize-system-wide-crypto' of https://github.com/grulja/tigervncPierre Ossman2021-07-141-1/+3
|\
| * Utilize system-wide crypto policiesJan Grulich2021-07-141-1/+3
| |
* | Remove vfb references from symbol namesPierre Ossman2021-07-134-69/+69
| | | | | | | | | | | | Xvnc was originally based on Xvfb, but it's just confusing to keep the names. So change all prefix to "vnc" instead to clearly mark things as part of TigerVNC.
* | Remove zaphod mode from XvncPierre Ossman2021-07-131-164/+64
| | | | | | | | | | It isn't really useful as it behaves just like starting multiple servers, so remove it in favour of keeping things simple.
* | Remove undocumented -linebias argumentPierre Ossman2021-07-131-26/+0
| | | | | | | | | | This is a development flag with no real use, so remove it to clean up the code.
* | Clean up Xvnc screen structPierre Ossman2021-07-131-18/+6
| | | | | | | | | | Remove stuff we don't use, and get it more in sync with Xvfb for easier comparison.
* | Remove unused headersPierre Ossman2021-07-131-8/+1
| |
* | Remove obsolete AIX hackPierre Ossman2021-07-131-5/+0
| |
* | Remove obsolete comment about backing storePierre Ossman2021-07-131-5/+0
| | | | | | | | This was removed years ago.
* | Remove CloseScreen() wrapperPierre Ossman2021-07-131-22/+0
| | | | | | | | The memory leak this worked around was fixed in X.org 1.16.
* | Do all RandR init in vncRandRInit()Pierre Ossman2021-07-131-20/+15
| | | | | | | | | | | | | | Keep everything in one place to make it easier to read. This also removes the call to RRInit() as that is done implicitly anyway.
* | Use central SetRootClip()Pierre Ossman2021-07-131-90/+4
| | | | | | | | | | There's been a common one since X.org 1.11, so use that instead of our own copy.
* | Remove Darwin code from XvncPierre Ossman2021-07-131-22/+0
| | | | | | | | | | We don't build for that platform anyway, so this is just a remnant from Xvfb.
* | Handle X.org patch level featuresPierre Ossman2021-07-136-40/+41
| | | | | | | | | | | | With the 1.20.x releases there has been features and API changes even on patch level versions, so we need to update our macros to handle these as well.
* | Remove shared memory framebuffer optionPierre Ossman2021-07-131-77/+3
| | | | | | | | | | This is a pointless remnant of Xvfb. We never print the id of the shared memory, so no other application can access this memory anyway.
* | Remove more color map code from XvncPierre Ossman2021-07-131-151/+0
| | | | | | | | | | This hasn't been supported or used in many years, so clean out the final remnants.
* | Remove DDXTIME codePierre Ossman2021-07-131-11/+0
| | | | | | | | This hasn't been used since xorg-server 1.1 so get rid of it.
* | Call FatalError() on bad Xvnc argumentsPierre Ossman2021-07-131-6/+12
| | | | | | | | This is consistent with other ddx behaviour.
* | Use CHECK_FOR_REQUIRED_ARGUMENTS() for arg checkPierre Ossman2021-07-131-15/+15
| | | | | | | | | | This is what all the other ddx variants use, so do the same in Xvnc to be consistent.
* | Apply Xorg coding style to xvnc.cPierre Ossman2021-07-131-560/+567
| | | | | | | | | | Makes it easier to compare with upstream files as the formatting will be the same.
* | Remove #ifdef RENDERPierre Ossman2021-07-132-22/+0
| | | | | | | | | | RENDER has been mandatory since xorg-server 1.9, so remove these checks.
* | Move ddxInputThreadInit() to xvnc.cPierre Ossman2021-07-132-9/+9
| | | | | | | | | | This should only be in the ddx parts of an X server, and Input.c is used by libvnc.so as well and can cause conflicts there.
* | Avoid some variable aliasingPierre Ossman2021-06-141-7/+7
| |
* | Use <user>@<hostname> as the default desktop namePierre Ossman2021-06-132-2/+36
|/ | | | | Is a lot more useful default than the previous "x11", or "x0vncserver". At the same time give x0vncserver a parameter to change the name.
* Maintain static screen DPI on resizePierre Ossman2021-04-081-4/+7
| | | | | | Trying to dynamically track the DPI did not really work as we'd start accumulating errors and eventually the DPI would start to drift. Instead maintain a fixed, sensible DPI at all times.
* Add support for notifying clients about pointer movementslhchavez2021-03-025-1/+43
| | | | | | | | | | | | | | | | | | | | | | | This change adds support for the VMware Mouse Position pseudo-encoding[1], which is used to notify VNC clients when X11 clients call `XWarpPointer()`[2]. This function is called by SDL (and other similar libraries) when they detect that the server does not support native relative motion, like some RFB clients. With this, RFB clients can choose to adjust the local cursor position under certain circumstances to match what the server has set. For instance, if pointer lock has been enabled on the client's machine and the cursor is not being drawn locally, the local position of the cursor is irrelevant, so the RFB client can use what the server sends as the canonical absolute position of the cursor. This ultimately enables the possibility of games (especially FPS games) to behave how users expect (if the clients implement the corresponding change). Part of: #619 1: https://github.com/rfbproto/rfbproto/blob/master/rfbproto.rst#vmware-cursor-position-pseudo-encoding 2: https://tronche.com/gui/x/xlib/input/XWarpPointer.html 3: https://hg.libsdl.org/SDL/file/28e3b60e2131/src/events/SDL_mouse.c#l804
* Drop other selection on ownership changePierre Ossman2021-03-011-0/+7
| | | | | Otherwise we might end up owners of something we cannot deliver data on, which can hang applications.
* Merge branch 'allow-tcp-and-unix' of https://github.com/jlesage/tigervncPierre Ossman2021-02-092-4/+11
|\
| * Added the ability to listen on both Unix socket and TCP port.Jocelyn Le Sage2021-02-042-4/+11
| | | | | | | | Setting `rfbport` to `-1` disables TCP port listening.
* | Update copyright year to 2021Pierre Ossman2021-01-251-1/+1
|/
* Merge branch 'noblock' of https://github.com/CendioOssman/tigervncPierre Ossman2021-01-193-12/+1
|\
| * Change streams to be asynchronousPierre Ossman2020-05-213-11/+0
| | | | | | | | | | | | | | | | | | | | Major restructuring of how streams work. Neither input nor output streams are now blocking. This avoids stalling the rest of the client or server when a peer is slow or unresponsive. Note that this puts an extra burden on users of streams to make sure they are allowed to do their work once the underlying transports are ready (e.g. monitoring fds).
| * Check buffer usage with a simply booleanPierre Ossman2020-05-211-1/+1
| | | | | | | | | | External callers don't need to know the exact details, only if there is data that needs to be flushed or not.
* | Update keycode maps to latest versionPierre Ossman2020-11-162-10/+14
| | | | | | | | Mainly fixes for Japanese and Korean keyboard layouts.
* | Tolerate specifying -BoolParam 0 and similarPierre Ossman2020-09-183-0/+31
| | | | | | | | | | | | This is needed by vncserver which doesn't know which parameters are boolean, and it cannot use the -Param=Value form as that isn't tolerated by the Xorg code.
* | Change development version to 1.11.80Pierre Ossman2020-08-191-1/+1
| |
* | Merge branch 'regions' of https://github.com/CendioOssman/tigervncPierre Ossman2020-06-155-157/+150
|\ \
| * | Get rid of magical assignment to RegionPierre Ossman2020-05-183-23/+17
| | | | | | | | | | | | Might as well make these explicit so the cost is apparent.
| * | Switch region code to pixmanPierre Ossman2020-05-011-2/+1
| | | | | | | | | | | | | | | This is the current upstream so let's make use of it to get the latest in features and fixes.
| * | Avoid using RegionInit() because of empty rectsPierre Ossman2020-05-011-26/+26
| | | | | | | | | | | | | | | It creates an invalid region if given an empty rect. Fortunately RegionInitBoxes() handles that just fine, so use that instead.
| * | Stop using legacy region macrosPierre Ossman2020-05-012-134/+134
| |/ | | | | | | | | We no longer support such old X servers so start using the current functions.
* | Catch errors resizing framebufferPierre Ossman2020-05-231-2/+7
| |
* | Add final line break to FatalError() callsPierre Ossman2020-05-232-7/+7
|/ | | | | It expects the callers to include this, so make sure we're consistently providing one.
* Handle empty changes for every operationPierre Ossman2020-04-201-22/+16
| | | | | | It seems like many of the X11 operations can end up with no pixels actually changing. So instead of discovering and adding workarounds for each individually we'll just check very region added if it's empty.
* Remove legacy Xorg codePierre Ossman2020-04-027-459/+6
| | | | | We now require at least 1.16, so remove all code that handled older versions than that.