TODO 3.18 KB
Newer Older
1 2 3
immediate:
----------

dscho's avatar
dscho committed
4
x11vnc: clipboard, cursor, updates interruptible by input (doesn't work yet)
5
.x11vnc: sometimes XTest fails (but doesn't with x0rfbserver)
dscho's avatar
dscho committed
6
extra_bytes in rfbDrawCharWithClip.
dscho's avatar
dscho committed
7
tested mouse buttons make copy rect, but text is not marked as mod.
dscho's avatar
dscho committed
8 9
cursor drawing: set optional grain to mark bigger rectangles as drawn (else
	you end up with thousands of one-pixel-rectangles to encode).
dscho's avatar
dscho committed
10
selectbox: scroll bars
dscho's avatar
dscho committed
11
documentation
12 13
	hint that to mark very tiny regions as
	modified is possibly inefficient for the encodings.
14
	(a trail of points could better be a small rectangle).
15 16 17 18

later:
------

19 20 21
authentification schemes (secure vnc)
	IO function ptr exists; now explain how to tunnel and implement a
	client address restriction scheme.
22
autoconf? at least Sun Solaris and Windows compilation
23
	(maybe Michael makes a small autconf)
24
using Hermes library for fast colour translations.
dscho's avatar
dscho committed
25
CORBA
26 27
internal HTTP tunnelling feature (needs a special GET target and a few
	changes to java applet).
dscho's avatar
dscho committed
28

29
done:
30
-----
31

dscho's avatar
dscho committed
32
.DeferUpdateTime (timing problems!)
33 34 35 36
.empty cursor sending doesn't work.
.udp (need an rfbClientPtr udpClient in rfbScreen)
	input only; nearly untested (don't have the clients).
.font handling: bpp>1
37
.test copyRect and pthreads.
38 39 40
.optionally dont draw rich cursors as xcursors
.cursor smears on IRIX with pthreads, then has bus error. has to be a mutex
	problem in cursor routines.
dscho's avatar
dscho committed
41 42 43 44
.fix bug in http (java) client with big endian server: byte swapping is broken
	(was a cursorshape which was sent too soon; java vncviewer assumes
	a rich cursor shape to be always 1 byte per pixel, however, framebuffer
	updates before setting the pixel format can be server format)
dscho's avatar
dscho committed
45 46
.rfbConnect, ConnectToTcpAddr
.update to newest TridiaVNC version (1.2.1).
47 48 49 50 51 52 53 54 55 56
.adapt rdp2vnc (rdesktop)
.pthreads concept: How to iterate over rfbClientPtr's? So that it can be
	 either called from rfbProcessEvents (which locks the list mutex)
	 or from the main thread (where the background loop sometimes
	 locks the list mutex).
	- cursor drawing!
	- cursor setting!
	- rfbMarkRectAsModified
  (did that by adding a refcount to clients secured by refCountMutex;
   it also was necessary to check for cl->sock<0 in SendUpdateBuf)
57 58 59 60 61
.translate.c: warning about non 8-bit colourmaps
	16-bit colourmaps are 192k -> no use without fast net.
.rfbCloseClient
.set colourmap
.support 3 bytes per pixel
62 63 64 65
.cursors
.cutpaste
.httpd
.other encodings
66
.test drawing of cursors when not using xcursor or rich cursor encoding
dscho's avatar
dscho committed
67
fix bug with odd width (depends on client depth: width has to be multiple of server.bytesPerPixel/client.bytesPerPixel). only raw!! -> bug of vncviewer!
68
.use sraRegion from Wez instead of miregion, because it is much smaller
dscho's avatar
dscho committed
69 70 71 72 73 74 75
.	- connection gone and then reconnect is a problem
	  the reason: there are in fact three threads accessing
	  the clientPtr: input, output and the application thread.
	  if you kill the viewer or do rfbCloseClient, all of those
	  three have to be warned that this is happening.
	-> rfbClientConnectionGone can only be called by the outer loop
	(with background loop, it is input, else it is processEvents).
76 77 78 79 80
. fixed pthreads issues:
	cursor deadlock,
	CopyRect deadlock.
. when copying a region with modified parts, they were not marked
	as modified