Note that you can limit your full-text search to a specific module with the 'module:' keyword. Example: 'module:tdebase <search text>'

[First Page] [Previous Page]  [Next Page] [Last Page]


GIT HashBranchDateAuthorLog Message
def30126 [view]master2006-01-08 19:29:21 +0000runge[libtdevnc] fix client non-jpeg/libz builds
e781eea6 [view]master2006-01-06 02:40:20 +0000runge[libtdevnc] rfbRegisterProtocolExtension extMutex was never initialized.
454c1fad [view]master2005-12-24 16:06:47 +0000runge[libtdevnc] x11vnc: enhance -passwdfile features, filetransfer on by default.
e673a125 [view]master2005-12-22 00:07:19 +0000dscho[libtdevnc] make compile again with pthreads; fix off-by-one error
1c26789e [view]master2005-12-19 19:45:51 +0000dscho[libtdevnc] introduce -deferptrupdate (thanks Dave)
1b81e342 [view]master2005-12-19 18:38:53 +0000dscho[libtdevnc] assorted fixes for MinGW32
3a8d4bdb [view]master2005-12-09 13:56:25 +0000dscho[libtdevnc] work around write() returning ENOENT on Solaris 2.7
065e2ebb [view]master2005-12-09 13:55:07 +0000dscho[libtdevnc] previous patch turned compile warning in a compile error; fix that ;-)
efbf1d72 [view]master2005-12-08 11:54:51 +0000dscho[libtdevnc] fix compile warnings
9e78be39 [view]master2005-12-07 18:44:02 +0000dscho[libtdevnc] one more memory leak
61204490 [view]master2005-12-07 18:35:48 +0000dscho[libtdevnc] plug memory leaks
6a7736f8 [view]master2005-12-07 18:30:22 +0000dscho[libtdevnc] translate keys based on unicode (much more reliable than sym)
54906d73 [view]master2005-11-28 16:30:47 +0000runge[libtdevnc] x11vnc: add -loop option.
8eb18f6c [view]master2005-11-25 07:22:43 +0000runge[libtdevnc] fix deadlock from rfbReleaseExtensionIterator(), fix no libz/libjpeg builds, disable tightvnc-filetransfer if no libpthread, add --without-pthread option, rm // comments, set NAME_MAX if not defined, x11vnc: throttle load if fb update requests not taking place.
de99644d [view]master2005-10-23 04:11:28 +0000runge[libtdevnc] configure.ac: test ... == ... not allowed on all unix.
30c00d0b [view]master2005-10-23 03:29:38 +0000runge[libtdevnc] x11vnc: -filexfer, -slow_fb, -blackout noptr,...
94d7fc84 [view]master2005-10-07 10:06:54 +0000dscho[libtdevnc] update TODO
951ec26b [view]master2005-10-07 09:58:45 +0000dscho[libtdevnc] The PseudoEncoding extension code was getting silly:
If the client asked for an encoding, and no enabled extension handled it,
LibVNCServer would walk through all extensions, and if they promised to handle
the encoding, execute the extension's newClient() if it was not NULL.
However, if newClient is not NULL, it will be called when a client connects,
and if it returns TRUE, the extension will be enabled. Since all the state of
the extension should be in the client data, there is no good reason why
newClient should return FALSE the first time (thus not enabling the extension),
but TRUE when called just before calling enablePseudoEncoding().
So in effect, the extension got enabled all the time, even if that was not
necessary.
The resolution is to pass a void** to enablePseudoEncoding. This has the
further advantage that enablePseudoEncoding can remalloc() or free() the
data without problems. Though keep in mind that if enablePseudoEncoding()
is called on a not-yet-enabled extension, the passed data points to NULL.
2c177c86 [view]master2005-10-06 22:17:40 +0000dscho[libtdevnc] update ChangeLog for today
194a76df [view]master2005-10-06 19:26:41 +0000dscho[libtdevnc] add an extension mechanism for LibVNCClient, modify the client data handling
so that more than one data structure can be attached, and add an example
to speak the client part of the back channel.
11fc700c [view]master2005-10-06 19:23:26 +0000dscho[libtdevnc] add BackChannel extension example
5c1fdb47 [view]master2005-10-06 19:22:23 +0000dscho[libtdevnc] fix warning
d15e3558 [view]master2005-10-06 19:07:01 +0000dscho[libtdevnc] kill BackChannel and CustomClientMessage: the new extension technique makes these hooks obsolete
60f1770e [view]master2005-10-06 18:51:56 +0000dscho[libtdevnc] provide a list of the pseudo encodings understood by the extension
354d3c9a [view]master2005-10-06 18:50:13 +0000dscho[libtdevnc] DEFINES -> AM_CFLAGS
808b6a0b [view]master2005-10-06 18:46:27 +0000dscho[libtdevnc] do it right: it is not DEFINES, but AM_CFLAGS
8490de3f [view]master2005-10-03 14:40:18 +0000dscho[libtdevnc] add enablePseudoEncoding() to rfbProtocolExtension
1a20edd7 [view]master2005-09-29 17:33:37 +0000dscho[libtdevnc] more TODOs, and an update to the website
0a909fde [view]master2005-09-28 16:51:50 +0000dscho[libtdevnc] This monster commit contains support for TightVNC's file transfer protocol.
Thank you very much, Rohit!
93be927b [view]master2005-09-27 15:18:22 +0000dscho[libtdevnc] Introduce generic protocol extension method. Deprecate
the processCustomClientMessage() method.
94fcd86c [view]master2005-09-27 15:08:28 +0000dscho[libtdevnc] Security is global. This was a misguided attempt to evade a global list.
I eventually saw the light and went with Rohit´s original approach.
6bdd2e46 [view]master2005-09-27 15:07:08 +0000dscho[libtdevnc] support new ffmpeg version
da7b3e71 [view]master2005-09-26 13:17:33 +0000dscho[libtdevnc] support VNC protocol version 3.7
65bb85b9 [view]master2005-08-22 07:23:15 +0000dscho[libtdevnc] for x11vnc standalone package, adaptions were needed after changing LibVNCServer.spec.in
df4cd3d3 [view]master2005-08-21 21:45:12 +0000dscho[libtdevnc] split rpm into three packages: the library, -devel (headers), and x11vnc
37f23b2c [view]master2005-07-18 02:21:14 +0000runge[libtdevnc] x11vnc: more gui fixes, gui requests via client_sock, PASSWD_REQUIRED build opt.
57d2ea65 [view]master2005-07-13 18:38:15 +0000runge[libtdevnc] x11vnc: setup for new release 0.7.3 while I remember how..
ec45cd95 [view]master2005-07-13 01:23:57 +0000runge[libtdevnc] x11vnc: tweaks for release, fix queue buildup under -viewonly.
640eb162 [view]master2005-07-11 02:35:48 +0000runge[libtdevnc] x11vnc: more improvements to gui, scary nopassword warning msg.
ad02e155 [view]master2005-07-09 03:52:20 +0000runge[libtdevnc] x11vnc: -grab_buster for XGrabServer deadlock; fix scrolls and copyrect for -clip and -id
8fcf0861 [view]master2005-07-07 01:45:21 +0000runge[libtdevnc] x11vnc: -gui tray now embeds in systray; more improvements to gui.
c5992936 [view]master2005-07-02 02:45:13 +0000runge[libtdevnc] x11vnc: -gui tray mode, httpd.c: check httpListenSock >= 0.
462ffd3f [view]master2005-06-28 14:30:08 +0000dscho[libtdevnc] fix annoying zrle decoding bug
9d43e8af [view]master2005-06-27 14:26:57 +0000runge[libtdevnc] main.c: fix screen->deferUpdateTime default.
150db2ad [view]master2005-06-27 01:40:17 +0000runge[libtdevnc] x11vnc: track keycode state for heuristics, -sloppy_keys, -wmdt, add -nodbg as option
144a3f52 [view]master2005-06-21 19:49:57 +0000dscho[libtdevnc] ZRLE has problems with RealVNC server. Look into it.
b2323a90 [view]master2005-06-21 13:28:22 +0000runge[libtdevnc] x11vnc: long info and tips when XOpenDisplay fails, reinstate "bad desktop" for wireframe
7b933e17 [view]master2005-06-18 16:47:48 +0000runge[libtdevnc] configure.ac: HP-UX and OSF1 no -R, x11vnc: second round of beta-testing fixes.
543e64d3 [view]master2005-06-14 03:50:55 +0000runge[libtdevnc] main.c: XReadScreen check, fix 64bit use of cursors, x11vnc: first round of beta-testing fixes, RFE's.
50568f1a [view]master2005-06-11 00:49:29 +0000dscho[libtdevnc] no longer complain on Solaris about missing ar, which was not really missing

List generated Fri Mar 14 19:18:03 2025
Currently showing patches 50851 to 50900 of 51371 [View All on Single Page]
Note that you can limit your full-text search to a specific module with the 'module:' keyword. Example: 'module:tdebase <search text>'

[First Page] [Previous Page]  [Next Page] [Last Page]