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

4 5
copyRect and pthreads possible problem.
authentification schemes (secure vnc)
dscho's avatar
dscho committed
6 7
udp
documentation
8 9 10
	hint that to mark very tiny regions as
	modified is possibly inefficient for the encodings.
	(a trail of points could be better a small rectangle).
11 12 13 14

later:
------

15
autoconf? at least Sun Solaris and Windows compilation
dscho's avatar
dscho committed
16 17
CORBA

18
done:
19
-----
20

21 22 23
.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
24 25 26 27
.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
28 29
.rfbConnect, ConnectToTcpAddr
.update to newest TridiaVNC version (1.2.1).
30 31 32 33 34 35 36 37 38 39
.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)
40 41 42 43 44
.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
45 46 47 48
.cursors
.cutpaste
.httpd
.other encodings
49
.test drawing of cursors when not using xcursor or rich cursor encoding
dscho's avatar
dscho committed
50
fix bug with odd width (depends on client depth: width has to be multiple of server.bytesPerPixel/client.bytesPerPixel). only raw!! -> bug of vncviewer!
51
.use sraRegion from Wez instead of miregion, because it is much smaller
dscho's avatar
dscho committed
52 53 54 55 56 57 58
.	- 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).