udt-c
udt-c copied to clipboard
A basic implementation of UDP-based Data Transfer protocol (UDT) in C
In all implementations of UDT available online including this one, I only see the client is sending data. When I tried the client receive data, it never gets data. Is...
it never works. basic file transfer fails
Right now, docs are only what is present in the header files. Make separate docs that can be used easily.
Right now, there is no support for sending timed packets like `ACK` and `Keep-alive` etc. `ACK` is send a complete data segment is sent. This is not the actual UDT...
Right now, only one client can connect to the server at the given socket. If any other client sends the data, it'll either get ignored or worse, overtake the current...
Keep a loss list and send `NAK`s for lost packets. Keep a sender's loss list for lost packets and re-transmit them when needed.