I\'m using 2 computers with an application to send and receive udp datagrams. There is no flow control and ICMP is disabled. Frequently when I send a file as UDP datagrams v
there is no flow control (ICMP disabled)
You can implement your own flow control using UDP:
See Sliding window protocol for further details.
[This would be in addition to having a sequence number in the packets which you send.]