udt c
1.0.0
C에서 UDP 기반 데이터 전송(UDT) 프로토콜을 구현한 것입니다. 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
구현하십시오. 버그나 제안사항은 여기로 신고해주세요.
MIT