summaryrefslogtreecommitdiffstats
path: root/win/winvnc
Commit message (Collapse)AuthorAgeFilesLines
* Update visible copyright years to 2019Samuel Mannehed2019-02-271-1/+1
|
* Merge branch 'exittimer' of https://github.com/CendioOssman/tigervncPierre Ossman2018-11-091-1/+3
|\
| * Properly terminate server on timeoutsPierre Ossman2018-11-091-1/+3
| | | | | | | | | | | | Do a proper cleanup when one of the termination timeouts trigger rather than just exiting on the spot. This makes sure we don't leave stray stuff around, e.g. unix socket files.
* | Merge branch 'vncserver' of https://github.com/CendioOssman/tigervncPierre Ossman2018-11-097-37/+237
|\|
| * Stop trying to send ListConnInfo via WM_COPYDATAPierre Ossman2018-11-092-3/+3
| | | | | | | | | | | | Windows tries to do a copy of it, and it is too complex to survive that. Just reference the object directly as we know the source of the message here.
| * Move ListConnInfo to WinVNC directoryPierre Ossman2018-11-096-19/+221
| | | | | | | | | | It is functionality specific to WinVNC, so move the code there to make things more clear.
| * Encapsulate client handling in VNCServerSTPierre Ossman2018-10-261-0/+1
| | | | | | | | | | | | Removed the last parts of VNCSConnectionST's back door in to VNCServerST and let the parent class fully handle coordination of clients, and access to the desktop.
| * Remove QueryConnectionHandlerPierre Ossman2018-10-102-5/+3
| | | | | | | | | | Make things simpler by making this a part of the SDesktop interface that always needs to be implemented.
| * Force common flow of connection queriesPierre Ossman2018-10-092-11/+10
| | | | | | | | | | | | Force queryConnection() to always call back to approveConnection() rather than return special values. This makes the flow easier to follow as it will be the same in all cases.
* | Merge branch 'nojava' of https://github.com/CendioOssman/tigervncPierre Ossman2018-10-268-227/+2
|\|
| * Remove Java web serverPierre Ossman2018-10-098-227/+2
| | | | | | | | | | Applets don't work anymore so remove everything that has to do with serving them.
* | Change to https for tigervnc URLPierre Ossman2018-10-192-2/+2
|/ | | | Our main web site now supports https, so update all references.
* Merge branch 'unix' of https://github.com/CendioOssman/tigervncPierre Ossman2018-05-292-5/+5
|\
| * Use abstract SocketListener classPierre Ossman2018-05-042-5/+5
| | | | | | | | | | Makes the code more general and not directly tied to specifically TCP sockets.
* | Catch exceptions by referencePierre Ossman2018-05-291-2/+2
|/ | | | | We use polymorphic exception objects, so catching by value invokes the copy constructor and stuff that we don't really want.
* Update visible copyright year to 2018Samuel Mannehed2018-02-081-1/+1
|
* Rename README.txt to README.rst and convert to reStructuredTextPeter Åstrand (astrand)2018-01-311-1/+1
|
* Configuration::listParams wants width/nameWidth; not ConfigurationObjectPeter Åstrand (astrand)2017-11-081-1/+1
|
* Get rid of getFbSize()/getDesktopSize() in commonPierre Ossman2017-09-224-5/+11
| | | | It was only used by WinVNC, so push it there instead.
* Update visible copyright year to 2017Samuel Mannehed2017-03-201-1/+1
|
* spelling fixesklemens2017-01-281-1/+1
|
* Don't fail old service cleanupPierre Ossman2016-08-181-2/+10
|
* Replace Windows specific thread handlingPierre Ossman2016-07-076-41/+84
| | | | Use the platform independent primitives instead.
* Clean up old WinVNC servicesPierre Ossman2016-06-131-0/+5
| | | | | | We've changed the service name a couple of times for various reasons. Make sure the old versions are removed when the new one is registered.
* Don't reference Xregion unless used directlyPierre Ossman2016-05-131-1/+1
|
* change the Copyright yearBojan Memetovic2016-03-181-1/+1
|
* Remove legacy Windows codePierre Ossman2016-01-122-10/+14
| | | | | We have lots of code that deals with Windows versions that we no longer support anyway. Clean out all of this old cruft.
* Shorten service identifierPierre Ossman2016-01-121-1/+1
| | | | | The identifier is used to compute the registry path, and should ideally be kept short and without spaces.
* Provide description for servicesPierre Ossman2016-01-121-0/+1
| | | | | | The argument named "desc" was not actually the description, but rather the short "display name". Add handling for the actual description to reduce confusion.
* Clean up listening sockets on errorPierre Ossman2015-09-291-1/+5
|
* Return TcpListener pointers rather than objectsPierre Ossman2015-09-292-9/+9
| | | | | | 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.
* Improve TigerVNC branding in WinVNCPierre Ossman2015-05-042-3/+3
| | | | | Avoids conflicts with the original RealVNC implementation, or any other forks of that code.
* Convert WinVNC to the new TcpListener APIPierre Ossman2015-03-173-19/+42
|
* Local address change events are not socket specificPierre Ossman2015-03-172-4/+4
|
* Resurrect TcpListener::getMyAddresses()Pierre Ossman2015-03-171-2/+2
| | | | | | | | | | | It is needed by WinVNC, but got removed in 892d10a70. Also fix a couple of issues: - Use getnameinfo() in order to be compatible with Windows XP - Make it static since it doesn't use a specific socket - Respect UseIPv4 and UseIPv6 - Flags for getaddrinfo() that match binding code - Dummy service value for Windows compatibility
* Fix unsafe format strings to the logging functionsPierre Ossman2015-03-033-4/+4
|
* Don't shove a pointer into a 32-bit variablePierre Ossman2015-03-032-4/+3
|
* Give CharArray a printf style method to ease automatic allocationPierre Ossman2015-03-032-7/+6
|
* Reorder class initialiser list to match what actually happensPierre Ossman2015-03-032-7/+8
|
* Fix mismatches between format string and argumentsPierre Ossman2015-03-031-1/+1
|
* Remove a lot of platform compatibilty stuffPierre Ossman2014-07-072-5/+0
| | | | It's either not used, or no longer relevant.
* Make WinVNC service mode work on Windows Vista and beyond.Samuel Mannehed2014-02-076-37/+161
| | | | | | | | Patch by Jochen Tucht, fixes bug 135. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5158 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Removes the additional padding reserved for the menubar and enables drag ↵Brian Hinz2014-01-122-1/+3
| | | | | | undocking for the java applet when served from Windows. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5157 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Update more copyrights to 2013. Peter Åstrand2013-06-111-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5122 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Windows has a bit of a peculiarity in that winsock2.h must be includedPierre Ossman2012-04-261-1/+2
| | | | | | | | | before windows.h for correct winsock behaviour. mingw-w64 also enforces this order, so to avoid compile errors we must include windows.h late in all files. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4906 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Build wm_hooks in its own directory. Makes the build structure more clear.Pierre Ossman2012-04-251-12/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4896 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Consolidate the installation paths and make sure we have decent defaults.Pierre Ossman2012-03-271-2/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4873 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Remove Visual C++ supportDRC2011-11-081-8/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4774 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Fix installer build when using MinGWDRC2011-11-071-0/+5
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4769 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Fix Java viewer integration when building WinVNC with MinGWDRC2011-10-123-6/+10
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4727 3789f03b-4d11-0410-bbf8-ca57d06f2519