Search found 3 matches

by Tangente
2010-09-11 12:46
Forum: Feature requests
Topic: VNC over UDP
Replies: 8
Views: 26379

Re: VNC over UDP

UltraVnc and protocol RFB relies in TCP.
We are working to implement UDP as alternative. First choice will be always TCP.
by Tangente
2010-08-13 20:04
Forum: Feature requests
Topic: VNC over UDP
Replies: 8
Views: 26379

Re: VNC over UDP

Mainly for multithread nature of Ultravnc: every client spawns a thread and to adapt it to udp will be difficult.
by Tangente
2010-08-13 16:55
Forum: Feature requests
Topic: VNC over UDP
Replies: 8
Views: 26379

Re: VNC over UDP

Greetings. My team and I are implementing UDP transport in UltraVNC.
Our idea, is to bind the vncSockConnect (TCP) to 127.0.0.1 and spawn a parallel vncUdpSockConnect thread that listens UDP traffic. When a new udp client try to connect (he send a HELLO packet to notify his intention), our ...