udt-c icon indicating copy to clipboard operation
udt-c copied to clipboard

A basic implementation of UDP-based Data Transfer protocol (UDT) in C

Results 14 udt-c issues
Sort by recently updated
recently updated
newest added

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.

wishlist

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...

bug
enhancement

Right now, there is no system for the same.

enhancement

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...

enhancement

Here: https://app.codacy.com/app/UtkarshMe/udt-c

bug

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.

enhancement