udt c
1.0.0
An implementation of the UDP-based Data Transfer (UDT) protocol in C. UDT is a much faster data transfer protocol than TCP and provides a socket interface to send/receive data just like any other protocol.
The documentation can be found in the header files (see include/udt.h
).
make # compile
make clean # cleanup
export LD_LIBRARY_PATH=./src/:$LD_LIBRARY_PATH # export the library path
progs/server # start the server
progs/client # start the client
progs/sendfile # start the sendfile server
progs/recvfile "file/to/get" "file/to/saveas" # receive the file
sendfile
, recvfile
.Please report bugs, suggestions here.
MIT