udt c
1.0.0
基于 UDP 的数据传输 (UDT)协议在 C 中的实现。UDT 是比 TCP 快得多的数据传输协议,并提供套接字接口来发送/接收数据,就像任何其他协议一样。
该文档可以在头文件中找到(请参阅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
。 请在这里报告错误、建议。
麻省理工学院