Page 2 of 2

Re: Basic UDP chat with source

Posted: Sun Mar 04, 2012 7:20 pm
by Vikhedgehog
Wusami wrote:
Reupload the project?
Whoa, never thought mediafire would go down from a great free service to an ad flooded error site. I'll reupload to dropbox in the next 30 minutes. Thanks for letting me know cooll;

Re: Basic UDP chat with source

Posted: Mon Mar 05, 2012 4:04 am
by Wusami
Hadnt uploaded yet?

Re: Basic UDP chat with source

Posted: Thu Mar 08, 2012 1:36 pm
by Vikhedgehog
I am moving all of my projects to my ftp server/website. You can download the source at http://vikcraft.com/files/visual-basic/ ... ervers.zip however im not sure if this adress will be permanent.

Re: Basic UDP chat with source

Posted: Thu Mar 08, 2012 4:32 pm
by Wusami
What does Mine craft have to do with the udp chat?

Re: Basic UDP chat with source

Posted: Thu Mar 08, 2012 5:05 pm
by MrAksel
Wrong link I guess :P

Re: Basic UDP chat with source

Posted: Thu Mar 08, 2012 5:40 pm
by Wusami
Haha yea i guess but this is important i need this because i am creating a remote desktop application and everything working but the udp

Re: Basic UDP chat with source

Posted: Thu Mar 08, 2012 6:27 pm
by MrAksel
Remote control should be completely done in TCP to ensure that all commands pass to the client, but if you plan on showing the client's screen then UDP will be the best. Make sure you send the whole image in one packet then, so if its ruined, the whole image is discarded. I can help you with the application if you are in a hurry.

Re: Basic UDP chat with source

Posted: Thu Mar 08, 2012 6:54 pm
by mandai
It is unlikely that you will be able to send a single UDP frame that is large enough to contain the whole screen (over a large network).
If you are using UDP you would be better off sending the image in smaller usable chunks, then any lost parts can be retransmitted.