synchronize udp broadcast file transfer

513 Views Asked by At

I'm currently working on a udp socket program that broadcasts over subnet directed address (192.168.0.255). I have an image file in the server and I will send it to 3 clients. Everything works fine, but the only problem is the receiving client doesn't always finish at the same time with the server. Any tips in synchronizing udp transfer? Thank you

2

There are 2 best solutions below

0
On

Basically, I am trying to implement a UDP based TFTP

From Wikipedia, Trivial File Transfer Protocol:

TFTP is a simple protocol for transferring files, implemented on top of the UDP/IP protocols …

Since TFTP is already based on UDP, you can quit reinventing the same.

… the current specification for the protocol can be found in RFC 1350.

0
On

Use TFTP

I'm just eliminating latency...

Then use use RFC 7440 - TFTP windowsize Option