summaryrefslogtreecommitdiffstats
path: root/unix
Commit message (Collapse)AuthorAgeFilesLines
* TigerVNC 1.6.90 (1.7.0 beta)v1.6.90Pierre Ossman2016-07-011-1/+1
|
* Properly name filehandle based on context of codeJeff Blaine2016-05-231-3/+3
| | | Old harmless copy/paste from code above left code confusing as it was reusing the filehandle "XSTARTUP" to write out $vncUserDir/config. This new small change uses a more topical filehandle name for the task at hand.
* Handle parameter without value in libvnc.soPierre Ossman2016-05-161-1/+9
|
* Merge branch 'fix_desc_ptr' of https://github.com/uglym8/tigervncPierre Ossman2016-05-131-1/+1
|\
| * Fix ptr usageuglym82016-05-111-1/+1
| |
* | Specify TigerVNC Project as the vendor/companyPierre Ossman2016-05-131-1/+1
|/
* Fix xserver118.patch so that it actually applies agsinst xorg 1.18Brian P. Hinz2016-05-071-5/+4
|
* Use non-blocking sockets in x0vnserverPierre Ossman2016-04-291-2/+9
|
* Fix timeout handling in x0vncserverPierre Ossman2016-04-291-10/+11
| | | | | We need to proper respect the timeouts set up by the core RFB code and not just the polling scheduler.
* Move socket write event handling in to the RFB corePierre Ossman2016-04-292-5/+5
| | | | | | What to do when a socket is writeable should be handled in the RFB core code as there may be other events we want to fire off when this happens.
* Avoid calling GetMaster() with old XorgPierre Ossman2016-04-151-0/+4
| | | | | GetMaster() wasn't exported until Xorg 1.18 so it is unsafe to use from libvnc.so for older versions.
* xserver: Add support for xorg version 1.18.Dominik Muth2016-04-113-2/+143
| | | | xserver118.patch is identical to xserver117.patch by content.
* Merge branch 'allowoverride' of https://github.com/michalsrb/tigervncPierre Ossman2016-04-084-8/+69
|\
| * Document AllowOverride parameter.Michal Srb2016-03-291-0/+15
| |
| * Add AllowOverride parameter.Michal Srb2016-03-213-8/+54
| | | | | | | | Allows to specify which configuration parameters can be modified on runtime.
* | Split out setPrimaryCB option in UNIX vncconfigScott Roland2016-03-291-2/+13
|/ | | | | | | | | This is the simplest approach, with setPrimaryCB having the same relationship to acceptClipboard as sendPrimaryCB has to sendClipboard. This does not change vncviewer, which should probably have something similar on UNIX platforms only. Pierre Ossman: Changed naming from accept to set
* change the Copyright yearBojan Memetovic2016-03-181-1/+1
|
* Better check for on screen visibilityPierre Ossman2016-01-111-13/+33
| | | | | | The check for visible drawables didn't account for compositing which can place a window off-screen. Put all of these checks in a common place and make sure it detects things properly.
* Fix race problem with detecting listening inetd socketsTristan Schmelcher2015-12-291-2/+1
| | | | | | The previous detection would fail if the socket closed before we had time to inspect it, which got us stuck in a loop as we would try (and fail) to do accept() on a non-listening socket.
* Set up Xauthority using a single invokationPierre Ossman2015-12-291-2/+4
|
* Use mcookie to generate X server cookiePierre Ossman2015-12-291-19/+4
|
* Check that xauth is in PATHPierre Ossman2015-12-291-17/+1
| | | | | The rest of the code assumes xauth is in PATH, so let's check for that instead.
* Gracefully handle empty CopyArea operationsPierre Ossman2015-11-301-6/+15
|
* Change development version to 1.6.80Pierre Ossman2015-11-261-1/+1
|
* Fix inverted logic in ProcVncExtSetParam.Michal Srb2015-11-121-1/+1
|
* option -xstartup addedLlorenç Garcia Martinez2015-10-301-0/+7
|
* option -xstartup addedLlorenç Garcia Martinez2015-10-301-11/+16
|
* Merge branch 'patch-1' of https://github.com/Siot/tigervncPierre Ossman2015-10-302-13/+34
|\
| * Added -noxstartupLlorenç Garcia Martinez2015-10-231-0/+6
| |
| * new option -noxstartup to not load any xstartup script fileLlorenç Garcia Martinez2015-10-231-13/+28
| |
* | Xvnc.man: remove -i optionKirill Kolyshkin2015-10-281-1/+1
| | | | | | | | | | | | | | | | Xvnc does not understand -i as an alias to -interface anymore (since commit f8e3b34c69) but it is still listed in the man page. Fix man accordingly Signed-off-by: Kir Kolyshkin <kir@openvz.org>
* | update manpage teaching about ~/.vnc/configgraysky2015-10-191-0/+8
| |
* | update vncserver to parse a config filegraysky2015-10-191-11/+63
|/
* vncserver: Clean pid files of dead processes.Michal Srb2015-10-021-1/+7
| | | | | When Xvnc fails to start, delete the pid file. Clean pid files of dead processes when listing them as well.
* Properly free temporary cursor bufferPierre Ossman2015-09-291-0/+2
|
* Avoid dropping const qualifier needlesslyPierre Ossman2015-09-291-4/+4
|
* Return TcpListener pointers rather than objectsPierre Ossman2015-09-295-32/+43
| | | | | | It is easier to control object life time and avoid magical socket duplication by having a single TcpListener object to pass around. We have to be more careful about deleting the object though.
* Make sure fallback block handler remains enabledPierre Ossman2015-09-241-0/+3
| | | | | | Commit f8e3b34 introduced a regression where the fallback write block handler would cease working after the first time it was called, potentially stalling writes.
* Use REGION_INTERSECT() rather than trying to compute things manuallyPierre Ossman2015-09-141-3/+13
| | | | | REGION_INIT() does not handle an empty or invalid BoxRec, so this method makes sure we don't feed bad rects further in to the process.
* Make vncHooksComposite() and vncHooksGlyphs() staticPierre Ossman2015-09-141-2/+2
| | | | They should never have been global symbols to begin with.
* Remove REGION_NULL fallbackPierre Ossman2015-09-141-7/+0
| | | | | It's been in the Xorg code base for ages. Any version that lacks it is too old for the rest of our code to work anyway.
* Refuse to start Xvnc if we failed to initialise a screenPierre Ossman2015-09-143-0/+11
| | | | | | Starting Xvnc without having any VNC functionality is pretty much pointless. So terminate when that happens, making the situation easier to detect for startup scripts.
* Change netmask to prefix in ACL documentationPierre Ossman2015-08-101-6/+5
| | | | | | The IPv6 additions deprecated support for netmasks in the access control lists. Unfortunately some documentation was not updated to reflect this fact.
* Fix reversed logic in vncIsTCPPortUsed()Pierre Ossman2015-08-101-2/+2
| | | | | Patch by Jay Kulpinski. Prevents -inetd mode from automatically finding a free X11 display number.
* Set user/client requested mode as preferredPierre Ossman2015-07-304-58/+93
| | | | | | | | | | Desktop environments like to change to the monitor's preferred mode, especially at login. Lacking one, they pick the highest resolution they can find. This tends to override what the user has picked, so try to work around the desktop environments by setting the preferred mode to what the user has chosen. Credit goes to Michal Srb who figured out the problem.
* Start a hidden rather than minimised vncconfigPierre Ossman2015-07-301-1/+1
| | | | | This is plumbing that we shouldn't have to annoy the user with a separate window for.
* Change development version to 1.5.80Pierre Ossman2015-06-181-1/+1
|
* Fix some bad signed/unsigned mismatchesPierre Ossman2015-06-171-4/+4
|
* Default to -noreset in XvncPierre Ossman2015-05-041-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/tigervncPierre Ossman2015-05-043-6/+13
|\ \