forked from tenchman/libvncserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
6672 lines (4609 loc) · 239 KB
/
Copy pathChangeLog
File metadata and controls
6672 lines (4609 loc) · 239 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2011-03-29 Christian Beier <dontmind@freeshell.org>
* README: Remove RDP from the README description. We do VNC but no RDP. Pointed out by Vic Lee, thanks!
2011-03-29 Christian Beier <dontmind@freeshell.org>
* utils/git2cl.pl: Fix skipping of merge commits in log convert
script.
2011-03-29 Christian Beier <dontmind@freeshell.org>
* bdf2c.pl, consolefont2c.pl, utils/bdf2c.pl,
utils/consolefont2c.pl, utils/git2cl.pl: Add a git-log to GNU-Style
ChangeLog converter script. Also put all helper scripts into a utils directory.
2011-03-28 Christian Beier <dontmind@freeshell.org>
* NEWS: Mention the pkg-config stuff in NEWS.
2011-03-27 Vic Lee <llyzs@163.com>
* .gitignore, Makefile.am, configure.ac, libvncclient.pc.in,
libvncserver.pc.in: Add libvncserver.pc and libvncclient.pc files. Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Christian
Beier <dontmind@freeshell.org>
2011-03-17 Christian Beier <dontmind@freeshell.org>
* libvncclient/ultra.c, libvncserver/ultra.c: Fix regression in
Ultra encoding introduced by commit
fe1ca16e9b75b5f38ab374c8dfff92d2c3ea4532. My bad. There we see what the encodings test is good for ;-)
2011-03-17 Christian Beier <dontmind@freeshell.org>
* test/encodingstest.c: Update encodingstest. * Fixed segfault on shutdown. * Updated to test all encodings. * Fixed to operate with encodings that split up rects into smaller rects.
2011-03-17 Christian Beier <dontmind@freeshell.org>
* libvncclient/rfbproto.c: Remove useless comparisons that always
evaluate to false. There can not be more than 255 security types and MSLogon is RFB 3.6
only.
2011-03-17 Christian Beier <dontmind@freeshell.org>
* examples/rotate.c, examples/rotatetemplate.c, examples/vncev.c,
libvncclient/listen.c, libvncclient/rfbproto.c,
libvncclient/ultra.c, libvncclient/zrle.c,
libvncserver/rfbserver.c, libvncserver/ultra.c: Fix (most) MinGW32
compiler warnings.
2011-03-17 Christian Beier <dontmind@freeshell.org>
* examples/rotate.c, examples/zippy.c, libvncserver/zrle.c,
libvncserver/zrleencodetemplate.c: Fix remaining compiler warnings.
2011-03-17 Christian Beier <dontmind@freeshell.org>
* VisualNaCro/nacro.c, examples/backchannel.c, examples/camera.c,
examples/colourmaptest.c, examples/example.c,
examples/filetransfer.c, examples/fontsel.c, examples/mac.c,
examples/pnmshow.c, examples/pnmshow24.c, examples/simple.c,
examples/simple15.c, examples/vncev.c, examples/zippy.c,
test/cargstest.c, test/copyrecttest.c, test/cursortest.c,
test/encodingstest.c: Check rfbGetScreen() return value everywhere. This fixes a segfault when a server is invoked with the '-help'
commandline argument.
2011-03-12 Christian Beier <dontmind@freeshell.org>
* CMakeLists.txt, rfb/rfbconfig.h.cmake: CMake: Check for libgcrypt
availability.
2011-03-12 Christian Beier <dontmind@freeshell.org>
* CMakeLists.txt: CMake: Threads can be available even if SDL is
not.
2011-03-12 Christian Beier <dontmind@freeshell.org>
* CMakeLists.txt: CMake: fix building SDLvncviewer.
2011-03-12 Christian Beier <dontmind@freeshell.org>
* Makefile.am: Include cmake configure file templates in dist
tarball. Signed-off-by: Christian Beier <dontmind@freeshell.org>
2011-03-12 Christian Beier <dontmind@freeshell.org>
* rfb/rfbconfig.h.in, rfb/stamp-h.in: Remove autogenerated files.
2011-03-12 Christian Beier <dontmind@freeshell.org>
* NEWS: Update NEWS for 0.9.8 release.
2011-03-07 Christian Beier <dontmind@freeshell.org>
* libvncclient/tls.c: Fix libvncclient TLS for Windows builds. GnuTLS seems to expect proper errno values internally. So set them
in our custom push/pull functions. Parts of the patch stolen from
libcurl, thanks! Signed-off-by: Christian Beier <dontmind@freeshell.org>
2011-03-07 Christian Beier <dontmind@freeshell.org>
* libvncclient/rfbproto.c: Let libvncclient build with gcrypt for
MinGW32 builds. Signed-off-by: Christian Beier <dontmind@freeshell.org>
2011-03-07 Vic Lee <llyzs@163.com>
* libvncclient/sockets.c: Use WaitForMessage instead of sleep in
socket reading to fix performance issue. Signed-off-by: Christian Beier <dontmind@freeshell.org>
2011-03-10 Christian Beier <dontmind@freeshell.org>
* common/d3des.c, common/d3des.h, libvncserver/auth.c,
libvncserver/corre.c, libvncserver/cutpaste.c, libvncserver/draw.c,
libvncserver/font.c, libvncserver/hextile.c, libvncserver/httpd.c,
libvncserver/rfbregion.c, libvncserver/rre.c,
libvncserver/selbox.c, libvncserver/sockets.c,
libvncserver/stats.c, libvncserver/tableinit24.c,
libvncserver/tableinitcmtemplate.c,
libvncserver/tableinittctemplate.c,
libvncserver/tabletrans24template.c,
libvncserver/tabletranstemplate.c, libvncserver/translate.c,
libvncserver/zrletypes.h, rfb/rfbregion.h, test/blooptest.c,
test/cursortest.c: Set proper file permissions for source files.
2011-03-10 Christian Beier <dontmind@freeshell.org>
* CMakeLists.txt, configure.ac: Next version will be 0.9.8.
2011-03-10 Christian Beier <dontmind@freeshell.org>
* Makefile.am, configure.ac, contrib/Makefile.am, contrib/zippy.c,
examples/Makefile.am, examples/zippy.c: Move zippy.c to examples.
2011-03-03 Christian Beier <dontmind@freeshell.org>
* libvncclient/sockets.c, libvncclient/tls.c, libvncserver/httpd.c,
libvncserver/rfbserver.c, libvncserver/sockets.c: Call
WSAGetLastError() everywhere errno is read after a Winsock call. Winsock does NOT update errno for us, we have fetch the last error
manually using WSAGetLastError().
2011-01-29 Christian Beier <dontmind@freeshell.org>
* common/lzoconf.h, common/lzodefs.h, common/minilzo.c,
common/minilzo.h, libvncclient/Makefile.am,
libvncserver/Makefile.am: Update minilzo library used for Ultra
encoding to ver 2.04. According to the minilzo README, this brings a significant speedup
on 64-bit architechtures. Changes compared to old version 1.08 can be found here:
http://www.oberhumer.com/opensource/lzo/lzonews.php Signed-off-by: Christian Beier <dontmind@freeshell.org>
2011-01-24 Christian Beier <dontmind@freeshell.org>
* libvncserver/corre.c, libvncserver/main.c,
libvncserver/private.h, libvncserver/rfbserver.c,
libvncserver/rre.c, libvncserver/ultra.c, rfb/rfb.h: libvncserver:
Make RRE, CoRRE and Ultra encodings thread-safe. This adds generic before/after encoding buffers to the rfbClient
struct, so there is no need for thread local storage. Signed-off-by: Christian Beier <dontmind@freeshell.org>
2011-02-02 Christian Beier <dontmind@freeshell.org>
* Makefile.am: Include CMakeLists.txt file in dist tarball.
2011-01-29 Christian Beier <dontmind@freeshell.org>
* .cvsignore, README.cvs, VisualNaCro/.cvsignore,
classes/.cvsignore, client_examples/.cvsignore, contrib/.cvsignore,
cvs_update_anonymously, examples/.cvsignore,
libvncclient/.cvsignore, libvncserver/.cvsignore,
libvncserver/tightvnc-filetransfer/.cvsignore, rfb/.cvsignore,
test/.cvsignore, vncterm/.cvsignore: Remove unneeded files
concerning CVS. We have a git repo nowadays and I guess we won't go back to CVS. Signed-off-by: Christian Beier <dontmind@freeshell.org>
2011-01-31 Johannes Schindelin <johannes.schindelin@gmx.de>
* examples/example.dsp, libvncserver.dsp, libvncserver.dsw: Remove
completely broken Visual Studio project files If people seriously consider building with Visual Studio, there is
always CMake. Pointed out by Christian Beier. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2011-01-31 Christian Beier <dontmind@freeshell.org>
* client_examples/Makefile.am, client_examples/SDLvncviewer.c:
SDLvncviewer: fix compilation from dist tarball. Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2011-01-21 Vic Lee <llyzs@163.com>
* acinclude.m4, configure.ac, libvncclient/rfbproto.c,
rfb/rfbproto.h: Add ARD (Apple Remote Desktop) security type support Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Christian
Beier <dontmind@freeshell.org>
2011-01-25 Christian Beier <dontmind@freeshell.org>
* CMakeLists.txt, common/d3des.c, common/d3des.h, common/lzoconf.h,
common/minilzo.c, common/minilzo.h, common/vncauth.c,
common/zywrletemplate.c, libvncclient/Makefile.am,
libvncclient/lzoconf.h, libvncclient/minilzo.c,
libvncclient/minilzo.h, libvncclient/rfbproto.c,
libvncclient/zrle.c, libvncserver/Makefile.am,
libvncserver/d3des.c, libvncserver/d3des.h, libvncserver/lzoconf.h,
libvncserver/minilzo.c, libvncserver/minilzo.h,
libvncserver/vncauth.c, libvncserver/zywrletemplate.c: Put files
used by both libs into a 'common' dir. No functional changes. All files used by _both_ libvncserver and
libvncclient are put into a 'common' directory and references from
other files as well as Autotools and CMake build systems are
updated. Signed-off-by: Christian Beier <dontmind@freeshell.org>
2011-01-20 ebola_rulez <ebola_rulez@users.sourceforge.net>
* libvncserver/vncauth.c: Fix two errors found by cppcheck Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Christian
Beier <dontmind@freeshell.org>
2011-01-01 runge <runge@karlrunge.com>
* libvncserver/rfbserver.c: Remove never used protocol version name
string.
2010-12-29 runge <runge@karlrunge.com>
* configure.ac, x11vnc/ChangeLog, x11vnc/Makefile.am,
x11vnc/README, x11vnc/avahi.c, x11vnc/cleanup.c,
x11vnc/connections.c, x11vnc/connections.h, x11vnc/help.c,
x11vnc/inet.c, x11vnc/inet.h, x11vnc/macosx.c, x11vnc/macosxCG.c,
x11vnc/macosxCG.h, x11vnc/macosx_opengl.c, x11vnc/macosx_opengl.h,
x11vnc/options.c, x11vnc/options.h, x11vnc/rates.c,
x11vnc/screen.c, x11vnc/ssltools.h, x11vnc/util.c, x11vnc/x11vnc.1,
x11vnc/x11vnc.c, x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c,
x11vnc/xwrappers.c: x11vnc: Use opengl to read screen on macosx.
non-deprecated macosx interfaces for input injection.
2010-12-21 runge <runge@karlrunge.com>
* configure.ac, prepare_x11vnc_dist.sh, x11vnc/README,
x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: x11vnc: force
--with-system-libvncserver to use correct headers.
2010-12-21 runge <runge@karlrunge.com>
* classes/ssl/ss_vncviewer,
classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-cursor-colors+no-tab
-traversal.patch,
classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch,
prepare_x11vnc_dist.sh, x11vnc/8to24.c, x11vnc/ChangeLog,
x11vnc/Makefile.am, x11vnc/README, x11vnc/RELEASE-NOTES,
x11vnc/appshare.c, x11vnc/cleanup.c, x11vnc/gui.c, x11vnc/help.c,
x11vnc/keyboard.c, x11vnc/keyboard.h, x11vnc/linuxfb.c,
x11vnc/macosx.c, x11vnc/macosxCG.c, x11vnc/misc/Makefile.am,
x11vnc/misc/README, x11vnc/misc/qt_tslib_inject.pl,
x11vnc/misc/uinput.pl, x11vnc/pointer.c, x11vnc/remote.c,
x11vnc/scan.c, x11vnc/screen.c, x11vnc/sslhelper.c,
x11vnc/ssltools.h, x11vnc/uinput.c, x11vnc/uinput.h,
x11vnc/unixpw.c, x11vnc/user.c, x11vnc/util.h, x11vnc/v4l.c,
x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
x11vnc/x11vnc_defs.c, x11vnc/xevents.c, x11vnc/xevents.h,
x11vnc/xrecord.c, x11vnc/xrecord.h, x11vnc/xwrappers.c: x11vnc:
touchscreen uinput support and Java viewer mousewheel support. See
x11vnc/ChangeLog for rest.
2010-12-01 Tobias Doerffel <tobias.doerffel@gmail.com>
* libvncserver/sockets.c: libvncserver sockets: check cl->screen
before accessing it In commit 079394ca5b14d8067b95a9cf95a834828b4425a6 new code with
insufficient checks was introduced causing a segfault when doing a
HTTP server connection. Such connections have no screen set in the
client data structure. Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
2010-11-30 Christian Beier <dontmind@freeshell.org>
* Doxyfile: Doxygen documentation: actually add Doxyfile.
2010-11-29 Johannes Schindelin <johannes.schindelin@gmx.de>
* index.html, success.html: The website is now maintained
independently Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-11-18 Christian Beier <dontmind@freeshell.org>
* client_examples/SDLvncviewer.c, client_examples/backchannel.c,
client_examples/ppmtest.c, client_examples/vnc2mpg.c,
examples/backchannel.c, examples/camera.c, examples/example.c,
examples/filetransfer.c, examples/pnmshow.c, examples/pnmshow24.c,
examples/vncev.c, rfb/rfb.h, rfb/rfbclient.h, rfb/rfbproto.h: Add
doxygen documentation support. Adds automagically generating libvncserver/libvncclient API documentation using doxygen. This gives a nice overview on both
APIs, include dependencies and function call/caller
dependencies. TODO: Modify all the explaining comments in the .c files for use
with doxygen as well. This patch only changes comments, no functional changes at all! Signed-off-by: Christian Beier <dontmind@freeshell.org>
2010-11-18 Christian Beier <dontmind@freeshell.org>
* libvncserver/main.c: libvncserver: fix endless loop when server
closed client in threaded mode. Signed-off-by: Christian Beier <dontmind@freeshell.org>
2010-11-18 Christian Beier <dontmind@freeshell.org>
* libvncserver/sockets.c: libvncserver sockets: favor per-screen
maxclientwait over global one when set. Signed-off-by: Christian Beier <dontmind@freeshell.org>
2010-11-11 Christian Beier <dontmind@freeshell.org>
* libvncserver/rfbserver.c, libvncserver/stats.c, rfb/rfbproto.h:
libvncserver cleanup: remove rfbKeyFrame remnants.
2010-11-02 Christian Beier <dontmind@freeshell.org>
* libvncclient/rfbproto.c, libvncserver/main.c,
libvncserver/rfbserver.c, libvncserver/stats.c, rfb/rfb.h,
rfb/rfbclient.h, rfb/rfbproto.h: libvnc[server|client]: implement
xvp VNC extension. This implements the xvp VNC extension, which is described in the
community version of the RFB protocol:
http://tigervnc.sourceforge.net/cgi-bin/rfbproto It is also
mentioned in the official RFB protocol.
2010-10-28 Tobias Doerffel <tobias.doerffel@gmail.com>
* libvncserver/main.c: Added missing initialization of extension
mutex When not calling rfbRegisterProtocolExtension() the extension mutex
is uninitialized but used upon calling rfbGetExtensionIterator() and
rfbReleaseExtensionIterator() in rfbNewTCPOrUDPClient(). This causes
libvncserver to crash on Win32 when building with thread support. Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
Signed-off-by: Christian Beier <dontmind@freeshell.org>
2010-10-21 Christian Beier <dontmind@freeshell.org>
* libvncclient/rfbproto.c, rfb/rfbproto.h: Only define strncasecmp
to _strnicmp when using MS compiler. Redefining strncasecmp to _strnicmp makes libvncclient hang forever
in SetFormatAndEncodings() on Windows when built with MinGW64. Reported by Tobias Doerffel <tobias.doerffel@gmail.com>, thanks!
2010-10-20 Tobias Doerffel <tobias.doerffel@gmail.com>
* libvncserver/rfbserver.c: In rfbSendDirContent() we have to make
sure to call closedir() before returning. This did not happen if
rfbSendFileTransferMessage() failed. Signed-off-by: Christian Beier <dontmind@freeshell.org>
2010-10-20 Christian Beier <dontmind@freeshell.org>
* libvncclient/sockets.c: Fix build failure wrt IP QoS support in
libvncclient. This is a small addendum to
0797e42a4aaf8131ae71899faea2d682ed81cb59. Seems that having IPv6
support in the OS does not necessarily mean that IPV6_TCLASS is
available. One such case seems to be Mac OS X 10.5.
2010-02-09 Vic Lee <llyzs@163.com>
* libvncclient/sockets.c: Avoid 100% CPU usage when calling
ReadFromRFBServer and no available bytes to read Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Christian
Beier <dontmind@freeshell.org>
2010-10-08 Christian Beier <dontmind@freeshell.org>
* rfb/rfbproto.h: rfb/rfbproto.h: Prefix WORDS_BIGENDIAN when it is
defined. Some (all?) autotool versions do not properly prefix WORDS_BIGENDIAN
with LIBVNCSERVER_, so do that manually here. Thanks to Lorenz Kolb for reporting.
2010-09-29 Christian Beier <dontmind@freeshell.org>
* TODO, libvncclient/rfbproto.c, libvncclient/sockets.c,
libvncclient/vncviewer.c, rfb/rfbclient.h: IP QoS support in
libvncclient. This enables setting the DSCP/Traffic Class field of IP/IPv6 packets
sent by a client. For example starting a client with -qosdscp 184
marks all outgoing traffic for expedited forwarding. Implementation for Win32 is still a TODO, though. See
http://betelco.blogspot.com/2009/03/dscp-marking-under-windows-at.htmlfor an overview of the Win32 QoS API mess...
2010-09-07 Christian Beier <dontmind@freeshell.org>
* TODO, libvncclient/sockets.c, libvncserver/httpd.c,
libvncserver/rfbserver.c, libvncserver/sockets.c, rfb/rfb.h:
Non-blocking sockets for Windows. Expands the SetNonBlocking() function in libvncclient/sockets.c to
also work under Windows and also changes it to honour maybe already
present socket flags. A similar function was introduced for libvncserver as well and all
the #ifdef'ed fnctl calls replaced with calls to that one. Signed-off-by: Christian Beier <dontmind@freeshell.org>
2010-09-06 Christian Beier <dontmind@freeshell.org>
* libvncserver/main.c, libvncserver/rfbserver.c,
libvncserver/scale.c: Cleanup: remove CORBA stuff. The header file and most of the functions referred to do not exist
in libvncserver. Signed-off-by: Christian Beier <dontmind@freeshell.org>
2010-09-10 runge <runge@karlrunge.com>
* classes/ssl/ss_vncviewer,
classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch: update
classes/ssl jars, patches, and script
2010-09-10 runge <runge@karlrunge.com>
* prepare_x11vnc_dist.sh, x11vnc/8to24.c, x11vnc/ChangeLog,
x11vnc/Makefile.am, x11vnc/README, x11vnc/avahi.c, x11vnc/avahi.h,
x11vnc/cleanup.c, x11vnc/connections.c, x11vnc/help.c,
x11vnc/inet.c, x11vnc/keyboard.c, x11vnc/misc/ultravnc_repeater.pl,
x11vnc/options.c, x11vnc/options.h, x11vnc/pointer.c,
x11vnc/pointer.h, x11vnc/remote.c, x11vnc/scan.c, x11vnc/screen.c,
x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/tkx11vnc,
x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/user.c,
x11vnc/userinput.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
x11vnc/x11vnc_defs.c, x11vnc/xevents.c, x11vnc/xwrappers.c: update
to x11vnc 0.9.12
2010-09-06 Christian Beier <dontmind@freeshell.org>
* libvncclient/rfbproto.c, libvncserver/tight.c: Fix MinGW32
compilation with libjpeg. MinGW32 (or more exactly, a rpcndr.h file included by winsock2.h)
typedefs a 'boolean' type that jmorecfg.h included by jpeglib.h also
tries to typedef. So, tell the jpeg headers. Closes: 3007302
2010-07-11 Christian Beier <dontmind@freeshell.org>
* configure.ac, libvncclient/sockets.c: Fix MinGW32 checking for
IPv6. Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-06-29 Vic Lee <llyzs@163.com>
* configure.ac, libvncclient/rfbproto.c, libvncclient/sockets.c,
rfb/rfbclient.h: libvncclient: add ipv6 support [jes: pulled the "host" declarations into the conditionally compiled
blocks where that variable is used. Also fixed non-IPv6
connections.] Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
Schindelin <johannes.schindelin@gmx.de>
2010-05-31 Wouter Van Meir <wouter.vanmeir@pandora.be>
* libvncclient/vncviewer.c: Call MallocFrameBuffer before
SetFormatAndEncodings The hook is still called after InitialiseRFBConnection() so we can
choose the color settings depending on the vnc server (or settings)
in that hook. This way one can use the "VNC server default format" pixelformat if
the client supports it, or perform a workaround (Intel AMT KVM
"classic vnc" server only works using 8bit colors in RFB3.8) Signed-off-by: Wouter Van Meir <wouter.vanmeir@pandora.be>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-05-19 Christian Beier <dontmind@freeshell.org>
* libvncserver/main.c, libvncserver/rfbserver.c, rfb/rfb.h:
Implement a DisplayFinishedHook for libvncserver. If set, this hook gets called just before rfbSendFrameBufferUpdate()
returns. Signed-off-by: Christian Beier <dontmind@freeshell.org>
2010-05-08 runge <runge@karlrunge.com>
* ChangeLog, libvncclient/rfbproto.c: libvncclient:
rfbResizeFrameBuffer should also set updateRect.
2010-05-08 runge <runge@karlrunge.com>
* prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/README,
x11vnc/connections.c, x11vnc/screen.c, x11vnc/unixpw.c,
x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: x11vnc: tweaks to
prepare_x11vnc_dist.sh. set cd->unixname in apply_opts().
2010-05-07 Johannes Schindelin <johannes.schindelin@gmx.de>
* AUTHORS: Complete the AUTHORS file Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-05-07 Wouter Van Meir <wouter.vanmeir@pandora.be>
* CMakeLists.txt: fix CMakeLists.txt: other way to find pthread
library ... and fixed linking of the tests in the examples directory. Signed-off-by: Wouter Van Meir <wouter.vanmeir@pandora.be>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-05-05 runge <runge@karlrunge.com>
* classes/ssl/index.vnc, classes/ssl/proxy.vnc,
classes/ssl/ultra.vnc, classes/ssl/ultraproxy.vnc,
classes/ssl/ultrasigned.vnc, prepare_x11vnc_dist.sh, x11vnc/README,
x11vnc/misc/enhanced_tightvnc_viewer/README,
x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl,
x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: misc/etv sync.
2010-05-01 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
x11vnc/help.c, x11vnc/misc/ultravnc_repeater.pl,
x11vnc/sslhelper.c, x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c,
x11vnc/xrecord.c: x11vnc: X11VNC_DISABLE_SSL_CLIENT_MODE option to
disable SSL client role in reverse connections. Improvements to
logging in ultravnc_repeater, ULTRAVNC_REPEATER_NO_RFB option.
Increase SSL timeout and print message if 'repeater' mode is
detected for reverse SSL connection. Fix RECORD scroll XCopyArea
detection with recent gtk/gdk library; set X11VNC_SCROLL_MUST_EQUAL to disable. Limit logging of RECORD error messages.
2010-04-28 Johannes Schindelin <johannes.schindelin@gmx.de>
* client_examples/Makefile.am: Another try to fix the _SOURCES issue Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-04-28 Corentin Chary <corentin.chary@gmail.com>
* CMakeLists.txt, rfb/rfbconfig.h.cmake: cmake: fix CMakeLists.txt - It's SDL_LIBRARY, not SDL_LIBRARIES - Detect GnuTLS and set the macro in rfbconfig.h - Add tls.c to libvncclient to avoid missing symbols Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-04-25 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/README, x11vnc/enc.h, x11vnc/help.c,
x11vnc/remote.c, x11vnc/scan.c, x11vnc/sslhelper.c,
x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: incorporate new
ultravnc_dsm_helper.c.
2010-04-18 runge <runge@karlrunge.com>
* x11vnc/ChangeLog,
x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
x11vnc/misc/enhanced_tightvnc_viewer/src/patches/stunnel-maxconn.pa
tch,
x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
ll.patch: Sync ssvncviewer changes.
2010-04-18 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/README, x11vnc/appshare.c,
x11vnc/connections.c, x11vnc/help.c, x11vnc/inet.c, x11vnc/inet.h,
x11vnc/misc/connect_switch, x11vnc/misc/desktop.cgi,
x11vnc/misc/ultravnc_repeater.pl, x11vnc/options.c,
x11vnc/options.h, x11vnc/remote.c, x11vnc/screen.c,
x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/user.c,
x11vnc/util.c, x11vnc/v4l.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c, x11vnc/xinerama.c:
Improvements to demo scripts. Alias -coe for -connect_or_exit. Fix
HAVE_V4L2. Warn no Xvfb, Xdummy, or Xvnc. Xinerama screens.
2010-04-09 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
x11vnc/connections.h, x11vnc/enc.h, x11vnc/help.c, x11vnc/inet.c,
x11vnc/inet.h, x11vnc/options.c, x11vnc/options.h, x11vnc/remote.c,
x11vnc/screen.c, x11vnc/sslcmds.c, x11vnc/sslhelper.c,
x11vnc/sslhelper.h, x11vnc/ssltools.h, x11vnc/tkx11vnc,
x11vnc/tkx11vnc.h, x11vnc/user.c, x11vnc/util.c, x11vnc/x11vnc.1,
x11vnc/x11vnc.c, x11vnc/x11vnc.h, x11vnc/x11vnc_defs.c,
x11vnc/xevents.c, x11vnc/xinerama.c: x11vnc: exit(1) for
-connect_or_exit failure, quiet query mode for grab_state,
pointer_pos, etc. ipv6 support. STUNNEL_LISTEN for particular
interface. -input_eagerly in addition to -allinput. quiet Xinerama
message.
2010-04-09 runge <runge@karlrunge.com>
* classes/ssl/ss_vncviewer,
classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch: Improvements to
Java viewer: troubleshooting settings and workarounds, misc bug
fixes.
2010-04-09 runge <runge@karlrunge.com>
* x11vnc/misc/connect_switch, x11vnc/misc/desktop.cgi,
x11vnc/misc/enhanced_tightvnc_viewer/README,
x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl,
x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
x11vnc/misc/enhanced_tightvnc_viewer/build.unix,
x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvnc.1,
x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_getpatches,
x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
ll.patch, x11vnc/misc/inet6to4: Synchronize ssvnc 1.0.26.
Improvements to perl scripts desktop.cgi, connect_switch and
inet6to4.
2010-03-21 runge <runge@karlrunge.com>
* classes/ssl/README, classes/ssl/onetimekey,
classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch,
x11vnc/ChangeLog, x11vnc/README, x11vnc/cursor.c, x11vnc/help.c,
x11vnc/keyboard.c, x11vnc/misc/Makefile.am, x11vnc/misc/README,
x11vnc/misc/connect_switch, x11vnc/misc/desktop.cgi,
x11vnc/misc/inet6to4, x11vnc/misc/panner.pl,
x11vnc/misc/ultravnc_repeater.pl, x11vnc/remote.c,
x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/user.c,
x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: classes/ssl:
Many improvements to Java SSL applet, onetimekey serverCert param,
debugging printout, user dialogs, catch socket exceptions,
autodetect x11vnc for GET=1. x11vnc: misc/scripts: desktop.cgi,
inet6to4, panner.pl. X11VNC_HTTPS_DOWNLOAD_WAIT_TIME, -unixpw %xxx
documented, and can run user cmd in UNIXPW_CMD. FD_XDMCP_IF for
create script, autodetect dm on udp6 only. Queries: pointer_x,
pointer_y, pointer_same, pointer_root. Switch on -xkd if keysyms
per key > 4 in all cases. daemon mode improvements for
connect_switch, inet6to4, ultravnc_repeater.pl. Dynamic change of
-clip do not create new fb if WxH is unchanged.
2010-03-21 runge <runge@karlrunge.com>
* configure.ac: I think two HAVE_X's were missed.
2010-03-13 Johannes Schindelin <johannes.schindelin@gmx.de>
* libvncclient/rfbproto.c, libvncclient/vncviewer.c: Fix compilation
without TLS Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-03-13 Johannes Schindelin <johannes.schindelin@gmx.de>
* client_examples/Makefile.am, client_examples/SDLvncviewer.c: Fix
compilation with newer automake For some reason, this developer's automake no longer understands
_SOURCES lines anymore. Work around that. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-03-13 Johannes Schindelin <johannes.schindelin@gmx.de>
* client_examples/Makefile.am, configure.ac: Rename HAVE_X ->
HAVE_X11 This change is just for consistency reasons. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-02-22 runge <runge@karlrunge.com>
* classes/ssl/README,
classes/ssl/tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch,
classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch,
x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/scan.c,
x11vnc/sslcmds.c, x11vnc/sslcmds.h, x11vnc/ssltools.h,
x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: classes/ssl:
Java SSL applet viewer now works with certificate chains. x11vnc:
Printout option -sslScripts. Suggest -auth guess in error message.
Set fake_screen width and height. Test for +kb in Xvfb.
2010-01-22 Christian Beier <dontmind@freeshell.org>
* libvncclient/vncviewer.c: libvncclient/vncviewer.c: don't set
serverPort in rfbInitClient(). The serverPort member is already set in rfbGetClient(), if we set it
again in rfbInitClient(), this breaks playing of vncrec files (this
relies on serverPort set to -1). Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-01-16 Johannes Schindelin <johannes.schindelin@gmx.de>
* libvncclient/vncviewer.c: LibVNCClient: make sure that the port is
initialized correctly. While at it, adjust coding style. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-01-15 Vic Lee <llyzs@163.com>
* libvncclient/rfbproto.c, libvncclient/vncviewer.c,
rfb/rfbclient.h: Add UltraVNC Repeater support in libvncclient [jes: adjusted coding style, made sure port is initialized
correctly] Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
Schindelin <johannes.schindelin@gmx.de>
2010-01-07 runge <runge@karlrunge.com>
* x11vnc/README, x11vnc/misc/Xdummy, x11vnc/x11vnc.1,
x11vnc/x11vnc_defs.c: x11vnc: add modeline creation to Xdummy.
2010-01-07 Christian Beier <dontmind@freeshell.org>
* libvncserver/font.c: libvncserver/font.c: add some checks to
rfbDrawChar(). In some cases (bad font data) the coordinates evaluate to <0,
causing a segfault in the following memcpy(). [jes: keep the offset, but do not try to segfault] Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-01-07 Christian Beier <dontmind@freeshell.org>
* vncterm/LinuxVNC.c: LinuxVNC: Fix for no input possible because of
ctrl key being stuck. Issue was reported as Debian bug ##555988,
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=555988 Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-01-04 Christian Beier <dontmind@freeshell.org>
* vncterm/LinuxVNC.c, vncterm/VNConsole.c: LinuxVNC: fix segfault at
"linuxvnc 1 -help". This fixes Debian Bug #399501: Switch to tty1. Run "linuxvnc 1
-help". You see help text, followed by "Segmentation fault". Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2010-01-02 runge <runge@karlrunge.com>
* x11vnc/8to24.c, x11vnc/8to24.h, x11vnc/ChangeLog, x11vnc/README,
x11vnc/allowed_input_t.h, x11vnc/appshare.c, x11vnc/avahi.c,
x11vnc/avahi.h, x11vnc/blackout_t.h, x11vnc/cleanup.c,
x11vnc/cleanup.h, x11vnc/connections.c, x11vnc/connections.h,
x11vnc/cursor.c, x11vnc/cursor.h, x11vnc/enc.h, x11vnc/enums.h,
x11vnc/gui.c, x11vnc/gui.h, x11vnc/help.c, x11vnc/help.h,
x11vnc/inet.c, x11vnc/inet.h, x11vnc/keyboard.c, x11vnc/keyboard.h,
x11vnc/linuxfb.c, x11vnc/linuxfb.h, x11vnc/macosx.c,
x11vnc/macosx.h, x11vnc/macosxCG.c, x11vnc/macosxCG.h,
x11vnc/macosxCGP.c, x11vnc/macosxCGP.h, x11vnc/macosxCGS.c,
x11vnc/macosxCGS.h, x11vnc/misc/README, x11vnc/misc/Xdummy,
x11vnc/misc/rx11vnc, x11vnc/misc/rx11vnc.pl, x11vnc/options.c,
x11vnc/options.h, x11vnc/params.h, x11vnc/pm.c, x11vnc/pm.h,
x11vnc/pointer.c, x11vnc/pointer.h, x11vnc/rates.c, x11vnc/rates.h,
x11vnc/remote.c, x11vnc/remote.h, x11vnc/scan.c, x11vnc/scan.h,
x11vnc/screen.c, x11vnc/screen.h, x11vnc/scrollevent_t.h,
x11vnc/selection.c, x11vnc/selection.h, x11vnc/solid.c,
x11vnc/solid.h, x11vnc/sslcmds.c, x11vnc/sslcmds.h,
x11vnc/sslhelper.c, x11vnc/sslhelper.h, x11vnc/ssltools.h,
x11vnc/uinput.c, x11vnc/uinput.h, x11vnc/unixpw.c, x11vnc/unixpw.h,
x11vnc/user.c, x11vnc/user.h, x11vnc/userinput.c,
x11vnc/userinput.h, x11vnc/util.c, x11vnc/util.h, x11vnc/v4l.c,
x11vnc/v4l.h, x11vnc/win_utils.c, x11vnc/win_utils.h,
x11vnc/winattr_t.h, x11vnc/x11vnc.1, x11vnc/x11vnc.h,
x11vnc/x11vnc_defs.c, x11vnc/xdamage.c, x11vnc/xdamage.h,
x11vnc/xevents.c, x11vnc/xevents.h, x11vnc/xinerama.c,
x11vnc/xinerama.h, x11vnc/xkb_bell.c, x11vnc/xkb_bell.h,
x11vnc/xrandr.c, x11vnc/xrandr.h, x11vnc/xrecord.c,
x11vnc/xrecord.h, x11vnc/xwrappers.c, x11vnc/xwrappers.h: x11vnc:
small tweaks to Xdummy, rx11vnc*. Apply SMALL_FOOTPRINT to
-appshare text. Copyright year change.
2010-01-02 runge <runge@karlrunge.com>
* libvncserver/tightvnc-filetransfer/rfbtightserver.c: year++;
2010-01-02 runge <runge@karlrunge.com>
* ChangeLog, libvncserver/tightvnc-filetransfer/rfbtightserver.c:
tightvnc-filetransfer/rfbtightserver.c: enabled fix for tight
security type for RFB 3.8 (debian bug 517422.)
2010-01-01 Vic Lee <llyzs@163.com>
* libvncclient/rfbproto.c, libvncclient/vncviewer.c,
rfb/rfbclient.h: Add support for viewers to select security types on
demand Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
Schindelin <johannes.schindelin@gmx.de>
2009-12-29 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c,
x11vnc/misc/Xdummy, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
x11vnc/x11vnc_defs.c: x11vnc: rename -create_x to -create_xsrv.
Hopefully done fixing Xdummy.
2009-12-28 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/README, x11vnc/appshare.c,
x11vnc/misc/Xdummy, x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvnc.1,
x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
ll.patch, x11vnc/remote.c, x11vnc/solid.c, x11vnc/tkx11vnc,
x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/x11vnc.1,
x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: Fix problems in
--without-x builds. Fix crash with -QD query for dbus info. Adjust
window size for small screens in -gui. Improve F1 help for xdm,
etc. include ssvnc 1.0.25 source.
2009-12-24 runge <runge@karlrunge.com>
* prepare_x11vnc_dist.sh, x11vnc/ChangeLog, x11vnc/README,
x11vnc/help.c, x11vnc/misc/Xdummy, x11vnc/ssltools.h,
x11vnc/unixpw.c, x11vnc/user.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
x11vnc/x11vnc_defs.c: x11vnc: prepare_x11vnc_dist.sh for 0.9.10.
-xdummy_xvfb, -svc_xdummy_xvfb and -create_x shorthand. lxde
session. Xdummy improvements and root no longer required.
2009-12-20 Vic Lee <llyzs@163.com>
* libvncclient/rfbproto.c: Fix version checking (>=3.8) for
rfbVncAuthOK confirmation when no password required It seems that vino does not send AuthOK when there is no password
with anonymous TLS, and it seems that vino is the only <3.8 VNC
server that handles anonymous TLS at all, so let's not wait for the
packet that will never come. Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
Schindelin <johannes.schindelin@gmx.de>
2009-12-21 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/README, x11vnc/sslhelper.c,
x11vnc/ssltools.h, x11vnc/unixpw.c, x11vnc/x11vnc.1,
x11vnc/x11vnc_defs.c: x11vnc: -DENC_HAVE_OPENSSL=0 to disable enc.h
but still have ssl. Tweak ps command in find_display. Try to handle AIX su. Ignore an initial newline at login: for -unixpw.
2009-12-18 runge <runge@karlrunge.com>
* x11vnc/ChangeLog: ChangeLog typo
2009-12-18 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c,
x11vnc/sslhelper.c, x11vnc/ssltools.h, x11vnc/unixpw.c,
x11vnc/user.c, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
x11vnc/x11vnc_defs.c: Add tag=... to unixpw opts to set FD_TAG.
Prefer Xvfb over Xdummy. Reduce wait time for https. Add 'Login
succeeded' output to unixpw panel.
2009-12-18 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/README, x11vnc/connections.c,
x11vnc/help.c, x11vnc/remote.c, x11vnc/unixpw.c, x11vnc/x11vnc.1,
x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: x11vnc: fix keycode and other
remote control actions under DIRECT: with an extra XFlush and other
safety measures. fflush(stderr) much in su_verify. Make the
-unixpw env. vars UNIXPW_DISABLE_SSL and UNIXPW_DISABLE_LOCALHOST
work correctly. Make -loopbg actually imply -bg.
2009-12-15 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/README, x11vnc/help.c, x11vnc/inet.c,
x11vnc/misc/Makefile.am, x11vnc/misc/connect_switch,
x11vnc/misc/ultravnc_repeater.pl, x11vnc/options.c,
x11vnc/options.h, x11vnc/pointer.c, x11vnc/remote.c,
x11vnc/screen.c, x11vnc/ssltools.h, x11vnc/unixpw.c, x11vnc/user.c,
x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c,
x11vnc/xdamage.c, x11vnc/xevents.c: X props names via env var.
fakebuttonevent action, connect_switch and ultravnc_repeater.pl
scripts, find_display try FD_XDM on failure, -quiet and -storepasswd
changes, better port 113 testing.
2009-12-07 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c, x11vnc/help.c,
x11vnc/remote.c, x11vnc/screen.c, x11vnc/sslhelper.c,
x11vnc/ssltools.h, x11vnc/x11vnc.1, x11vnc/x11vnc.c,
x11vnc/x11vnc_defs.c: X11VNC_EXTRA_HTTPS_PARAMS,
X11VNC_HTTP_LISTEN_LOCALHOST, X11VNC_REOPEN_SLEEP_MAX,
-findauth/-auth guess FD_XDM=1 for root, work around xhost
SI:localuser:root.
2009-12-05 runge <runge@karlrunge.com>
* classes/ssl/ss_vncviewer,
classes/ssl/ultravnc-102-JavaViewer-ssl-etc.patch,
x11vnc/ChangeLog, x11vnc/README, x11vnc/appshare.c, x11vnc/gui.c,
x11vnc/unixpw.c, x11vnc/x11vnc.1, x11vnc/x11vnc_defs.c: Update java
and scripts in classes/ssl. x11vnc: declare crypt() on all
platforms. more wishes.
2009-12-02 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/Makefile.am, x11vnc/README,
x11vnc/appshare.c, x11vnc/connections.c, x11vnc/cursor.c,
x11vnc/help.c, x11vnc/keyboard.c, x11vnc/options.c,
x11vnc/options.h, x11vnc/pm.c, x11vnc/pointer.c, x11vnc/remote.c,
x11vnc/screen.c, x11vnc/sslhelper.c, x11vnc/tkx11vnc,
x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/user.c,
x11vnc/userinput.c, x11vnc/util.c, x11vnc/util.h,
x11vnc/win_utils.c, x11vnc/win_utils.h, x11vnc/x11vnc.1,
x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c, x11vnc/xevents.c,
x11vnc/xinerama.c, x11vnc/xrandr.c: x11vnc: -appshare mode for
sharing an application windows instead of the entire desktop. map
port + 5500 in reverse connect. Add id_cmd remote control functions
for id (and other) windows. Allow zero port in SSL reverse
connections. Adjust delays between multiple reverse connections;
X11VNC_REVERSE_SLEEP_MAX env var. Add some missing mutex locks; add
INPUT_LOCK and threads_drop_input. More safety in -threads mode for
new framebuffer change. Fix some stderr leaking in -inetd mode.
2009-12-01 runge <runge@karlrunge.com>
* libvncserver/cursor.c, libvncserver/sockets.c,
libvncserver/translate.c: Add locks of updateMutex in
rfbRedrawAfterHideCursor() and rfbSetClientColourMap(). Up listen
limit from 5 to 32.
2009-11-18 runge <runge@karlrunge.com>
* x11vnc/misc/enhanced_tightvnc_viewer/README,
x11vnc/misc/enhanced_tightvnc_viewer/Windows/util/connect_br.tcl,
x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc_cmd,
x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
ll.patch: ssvnc/enhanced_tightvnc_viewer update.
2009-11-18 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c,
x11vnc/connections.c, x11vnc/cursor.c, x11vnc/cursor.h,
x11vnc/enc.h, x11vnc/help.c, x11vnc/remote.c, x11vnc/screen.c,
x11vnc/selection.c, x11vnc/solid.c, x11vnc/ssltools.h,
x11vnc/tkx11vnc, x11vnc/tkx11vnc.h, x11vnc/unixpw.c, x11vnc/user.c,
x11vnc/x11vnc.1, x11vnc/x11vnc.c, x11vnc/x11vnc.h,
x11vnc/x11vnc_defs.c, x11vnc/xevents.c, x11vnc/xevents.h: x11vnc:
-findauth, -auth guess, & etc.
2009-11-11 Christian Beier <dontmind@freeshell.org>
* libvncclient/listen.c, rfb/rfbclient.h: libvncclient: better
return value for non-forking listen. The return value now better reflects what has happened: 1 on success
(incoming connection on listen socket, we accepted it successfully),
-1 on error, 0 on timeout. Also change the select calls to not check _all_ possible file
descriptors. Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2009-11-05 Christian Beier <dontmind@freeshell.org>
* libvncclient/listen.c, libvncclient/rfbproto.c,
libvncclient/vncviewer.c, libvncserver/rfbserver.c: Fix checks for
socket values, 0 is a legal value. To make this work, we also have to initialize sockets to a default
value of -1. Also close a client listen socket if it's open. Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2009-10-31 Christian Beier <dontmind@freeshell.org>
* libvncclient/vncviewer.c: libvncclient: include winsock2.h in
vncviewer.c. fixes warning about closesocket being implicitly declared. Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2009-11-05 Vic Lee <llyzs@163.com>
* configure.ac: Change GnuTLS minimum requirement to 2.4.0 Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
Schindelin <johannes.schindelin@gmx.de>
2009-11-04 Vic Lee <llyzs@163.com>
* client_examples/ppmtest.c, examples/example.c,
libvncclient/sockets.c, libvncclient/zrle.c, libvncserver/cursor.c,
libvncserver/tightvnc-filetransfer/rfbtightserver.c,
vncterm/VNConsole.c: Fix various compilation warnings Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
Schindelin <johannes.schindelin@gmx.de>
2009-10-07 Vic Lee <llyzs@163.com>
* libvncclient/rfbproto.c, libvncserver/vncauth.c, rfb/rfbclient.h,
rfb/rfbproto.h: Add MSLogon security type Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes
Schindelin <johannes.schindelin@gmx.de>
2009-10-31 Johannes Schindelin <johannes.schindelin@gmx.de>
* AUTHORS: Add Alexander to the authors Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2009-10-31 Christian Beier <dontmind@freeshell.org>
* client_examples/SDLvncviewer.c: SDLvncviewer: don't call clean up
the same client twice. If rfbInitConnection fails, it cleans up the client, so protect
against doing it ourselves again. Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2009-10-30 Christian Beier <dontmind@freeshell.org>
* client_examples/SDLvncviewer.c: SDLvncviewer: add SIGINT handler
to be able to actually stop program. Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2009-10-26 Christian Beier <dontmind@freeshell.org>
* client_examples/SDLvncviewer.c: SDLvncviewer: use -listennofork
when -listen specified. As -listen mode isn't really working under UNIX and not at all under
windows, use -listennofork and an outer listen loop instead. Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2009-10-26 Christian Beier <dontmind@freeshell.org>
* libvncclient/listen.c, libvncclient/vncviewer.c, rfb/rfbclient.h:
libvncclient: add a non-forking listen function. Forking the whole process from deep within a library call does not
really work at all with apps that use multiple threads, i.e. every
reasonably modern GUI app. So, provide a non-forking listen function
so that the caller can decide if to fork, start a thread, etc. This implementation adds a timeout parameter to be able to call the
listen function multiple times so that it's possible to do sth. else
in between, e.g. abort listening. Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2009-10-21 Christian Beier <dontmind@freeshell.org>
* client_examples/SDLvncviewer.c: SDLvncviewer: make listen mode
work _somewhat_. set the port to listen on and really ensure that the window of the
fork()ed instance is closed. works somewhat: it's now actually possible to listen for an incoming
connection and to close it again, but the second connection attempt
fails with 'XIO: fatal IO error 11 (Resource temporarily
unavailable)'. this could relate to the fact that SDL uses threads
internally and we're fork()ing here... Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2009-10-30 Christian Beier <dontmind@freeshell.org>
* libvncclient/sockets.c: libvncclient: make listenAtTCPPort() work
under windows. Actually, initSockets() has to be called everywhere we possibly use
sockets the first time. Also fix return value of initSockets(). Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
2009-10-30 Alexander Dorokhine <arrenlex@gmail.com>
* libvncclient/rfbproto.c, libvncclient/vncviewer.c,
rfb/rfbclient.h: libvncclient: Add FinishedFrameBufferUpdate
callback When working on a program which searches the display for some image,
one does not want to search again without getting an FB update. Add
a callback to make this possible.
2009-10-30 Alexander Dorokhine <arrenlex@gmail.com>
* libvncclient/sockets.c: Fix hostname resolution problems under
Windows On Windows, the WSA system needs to be initialized to be able to
look up host names. This patch also changes *addr = 0 to use the constant
INADDR_LOOPBACK instead, which seems to be required on Windows.
2009-10-17 runge <runge@karlrunge.com>
* x11vnc/ChangeLog, x11vnc/README, x11vnc/cleanup.c, x11vnc/help.c,
x11vnc/solid.c, x11vnc/sslhelper.c, x11vnc/x11vnc.1,
x11vnc/x11vnc.c, x11vnc/x11vnc_defs.c: Workaround for inane
X_ShmAttach incompatibility in Xorg, -solid support in xfce,
showrfbauth option.
2009-10-08 runge <runge@karlrunge.com>
* x11vnc/misc/enhanced_tightvnc_viewer/README,
x11vnc/misc/enhanced_tightvnc_viewer/bin/ssvnc,
x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ss_vncviewer,
x11vnc/misc/enhanced_tightvnc_viewer/bin/util/ssvnc.tcl,
x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvnc.1,
x11vnc/misc/enhanced_tightvnc_viewer/man/man1/ssvncviewer.1,
x11vnc/misc/enhanced_tightvnc_viewer/src/patches/_bundle,
x11vnc/misc/enhanced_tightvnc_viewer/src/patches/tight-vncviewer-fu
ll.patch: Synchronize ssvnc source, etc. Nearly the 1.0.24
release...
2009-10-08 runge <runge@karlrunge.com>