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
603b5667 [view]master2006-02-20 19:19:30 +0000runge[libtdevnc] fix some non-gcc compiler warnings and signals in x11vnc
4b8cc33e [view]master2006-02-07 01:12:47 +0000runge[libtdevnc] x11vnc: fix AIX build wrt h_errno.
94b092cd [view]master2006-02-06 05:34:43 +0000runge[libtdevnc] x11vnc: -8to24 more speedups; tunables for very slow machines.
d0ef1285 [view]master2006-02-05 04:46:57 +0000runge[libtdevnc] x11vnc: -8to24 speedups and improvements.
1967913e [view]master2006-01-22 03:56:23 +0000runge[libtdevnc] x11vnc: -8to24 opts, use XGetSubImage. fix -threads deadlocks and -rawfb crash
17e6b6a2 [view]master2006-01-19 03:54:10 +0000runge[libtdevnc] x11vnc: -8to24 now works on default depth 8 displays.
e38c3c22 [view]master2006-01-16 21:42:49 +0000runge[libtdevnc] x11vnc: more tweaks to -8to24 XGETIMAGE_8TO24
5993dd75 [view]master2006-01-15 03:58:48 +0000runge[libtdevnc] x11vnc: add -8to24 option for some multi-depth displays.
60918e66 [view]master2006-01-12 12:54:02 +0000runge[libtdevnc] configure.ac: add switches for most X extensions.
9b3163c0 [view]master2006-01-11 19:56:10 +0000runge[libtdevnc] logMutex needs to be initialized too; in rfbDefaultLog.
57cf0cda [view]master2006-01-11 15:01:12 +0000runge[libtdevnc] x11vnc: close fd > 2 in run_user_command(), -nocmds in crash_debug, fix 64bit bug for -solid.
0b7a0030 [view]master2006-01-10 14:07:58 +0000dscho[libtdevnc] rfbProcessEvents() has to iterate also over clients with sock < 0 to close them
71f2ec79 [view]master2006-01-09 01:54:38 +0000runge[libtdevnc] x11vnc: the big split.
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
7a12087b [view]master2005-06-06 20:04:51 +0000dscho[libtdevnc] add definitions from other VNC implementations
7101d427 [view]master2005-06-06 20:03:56 +0000dscho[libtdevnc] more TODOs
714bd045 [view]master2005-06-06 19:48:38 +0000dscho[libtdevnc] link to libmp3lame only if exists
89148d77 [view]master2005-06-04 02:17:41 +0000runge[libtdevnc] main.c: no sraRgnSubstract for copyRect, scrolls for x11vnc -scale; add -fixscreen
4effb62e [view]master2005-05-31 03:26:04 +0000runge[libtdevnc] main.c: fix copyRect for non-cursor-shape-aware clients.
813f4211 [view]master2005-05-25 10:59:27 +0000dscho[libtdevnc] news
ae59284a [view]master2005-05-25 03:19:23 +0000runge[libtdevnc] x11vnc: scrolling: grabserver, autorepeat throttling, mouse wheel, fix onetile
ff590d0a [view]master2005-05-24 11:45:11 +0000dscho[libtdevnc] mac works!
a3f1ba45 [view]master2005-05-24 11:17:16 +0000dscho[libtdevnc] make libvncserver-conf executable the autoconf way
8ef9dbd3 [view]master2005-05-24 10:54:46 +0000dscho[libtdevnc] "make t" now executes the tests
8f4b4e26 [view]master2005-05-24 10:45:40 +0000dscho[libtdevnc] do distribute and depend on zrle.c
b225ee99 [view]master2005-05-24 08:59:31 +0000dscho[libtdevnc] implement ZRLE decoding
93ab95b1 [view]master2005-05-24 08:58:18 +0000dscho[libtdevnc] try 32 bit first
6fb77fb0 [view]master2005-05-24 08:56:35 +0000dscho[libtdevnc] fix off by one bug
1b830d04 [view]master2005-05-23 19:59:59 +0000dscho[libtdevnc] init a structure *before* using it...
53387007 [view]master2005-05-23 19:31:44 +0000dscho[libtdevnc] remove wrong comment
669b4c86 [view]master2005-05-23 19:26:12 +0000dscho[libtdevnc] make zlib and tight handling thread safe (static -> rfbClient)
dc1094f0 [view]master2005-05-23 18:31:23 +0000dscho[libtdevnc] work around bug in ffmpeg
a49fb510 [view]master2005-05-23 14:23:44 +0000dscho[libtdevnc] simplify configure (do not check for malloc(0) bug)
c309365f [view]master2005-05-23 14:23:18 +0000dscho[libtdevnc] fix compilation for LIBAVCODEC_BUILD==4754
963cb8f6 [view]master2005-05-20 18:57:11 +0000dscho[libtdevnc] finally fix socklen_t problem
756b3a34 [view]master2005-05-18 10:24:37 +0000dscho[libtdevnc] fix socklen_t also for defines
a40b790e [view]master2005-05-18 09:11:27 +0000dscho[libtdevnc] fix compilation for systems without socklen_t
2b3f56d3 [view]master2005-05-18 08:55:51 +0000dscho[libtdevnc] fix off by one bug
ee524413 [view]master2005-05-18 08:12:28 +0000dscho[libtdevnc] hide strict ansi stuff if not explicitely turned on; actually use the socklen_t test from configure.ac
a5524005 [view]master2005-05-18 01:54:00 +0000runge[libtdevnc] x11vnc: more scrolling, -scr_term, -wait_ui, -nowait_bog
8d116dfa [view]master2005-05-17 09:07:51 +0000dscho[libtdevnc] also distribute private.h...
dbab49d4 [view]master2005-05-17 09:07:33 +0000dscho[libtdevnc] update TODOs
c42529c3 [view]master2005-05-16 16:18:59 +0000dscho[libtdevnc] fix SIGSEGV when client has incompatible protocol; release mutex before freeing it
8bee4eb9 [view]master2005-05-15 13:57:51 +0000dscho[libtdevnc] ANSIfy, fix some warnings from Linus' sparse
be5b1296 [view]master2005-05-15 12:38:36 +0000runge[libtdevnc] libvncserver/{main.c,rfbserver.c}: fix a couple more CopyRect memory leaks
320edc79 [view]master2005-05-14 11:28:56 +0000dscho[libtdevnc] more files to ignore
446a6fab [view]master2005-05-14 11:13:52 +0000dscho[libtdevnc] fix memory leaks detected using valgrind
3a7e70de [view]master2005-05-14 04:01:37 +0000runge[libtdevnc] x11vnc: more improvements to -scrollcopyrect and -xkb modes.
34f714bc [view]master2005-05-07 13:33:09 +0000dscho[libtdevnc] socketInitDone -> socketState
1bb36df3 [view]master2005-05-03 22:37:51 +0000runge[libtdevnc] libvncserver/main.c: fix memory leak in rfbDoCopyRect/rfbScheduleCopyRect; configure.ac tweaks.
b0daa444 [view]master2005-05-03 02:05:51 +0000runge[libtdevnc] x11vnc: -scrollcopyrect/RECORD, etc. configure.ac: customizations for x11vnc pkg

List generated Sun Dec 22 23:17:49 2024
Currently showing patches 49201 to 49300 of 49734 [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]