Hello to the guru's.
I develop a techer-student application that need alll the student view the teacher screen at the same time, if this possible?
Can somebody send me some code or information?
My email is forkus2000@yahoo.com
Regards to all
Celebrating the 22th anniversary of the UltraVNC: https://forum.uvnc.com/viewtopic.php?t=38031
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Development: UltraVNC 1.5.0.X: https://forum.uvnc.com/viewtopic.php?t=38037
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Development: UltraVNC 1.5.0.X: https://forum.uvnc.com/viewtopic.php?t=38037
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
multicast in visual basic?
I googled for multicast vnc and up came among others
http://www2.in.tum.de/~ziewer/multicastvnc/
I don't know how or if they handle lost packets.
http://www2.in.tum.de/~ziewer/multicastvnc/
I don't know how or if they handle lost packets.
- Rudi De Vos
- Admin & Developer
- Posts: 6923
- Joined: 2004-04-23 10:21
- Contact:
The biggest isue with multicast
+Speed controle. With TCP, it's the cpu and bandwidth that controle the speed. Viewer ask next update.
Using multicast, you move from viewer ask to server push.
If you restrict the use to LAN, classroom model you can easy overcome
this problem by using one TCP viewer for rate controle and X mulicast connections.
+All package need to be total independed.
order is unimportant
missed packages have no influnce.
+package loss:
Handle package lost may be overkill. The lost package will in most cases
already be to old and overwritten be a next package.
You better add something that send a little part of the screen (64x64) with
each update, so after 2 or 3 minutes you have send the complete screen
This also has the advantage, that a new multicast connection will not require a full screen refresh.
+Speed controle. With TCP, it's the cpu and bandwidth that controle the speed. Viewer ask next update.
Using multicast, you move from viewer ask to server push.
If you restrict the use to LAN, classroom model you can easy overcome
this problem by using one TCP viewer for rate controle and X mulicast connections.
+All package need to be total independed.
order is unimportant
missed packages have no influnce.
+package loss:
Handle package lost may be overkill. The lost package will in most cases
already be to old and overwritten be a next package.
You better add something that send a little part of the screen (64x64) with
each update, so after 2 or 3 minutes you have send the complete screen
This also has the advantage, that a new multicast connection will not require a full screen refresh.