UDP-based Data Transfer Protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
nathan 8272c251de
Updated readme (remove java bits)
5 years ago
src Removed java bits. Updated release notes. 5 years ago
udt-doc Removed java bits. Updated release notes. 5 years ago
.gitignore Updated .gitignore 5 years ago
CMakeLists.txt Added CMake, removed java bits from build 5 years ago
LICENSE Updated license information 8 years ago
LICENSE.Apachev2 Updated license information 8 years ago
LICENSE.BSD Updated license information 8 years ago
README.md Updated readme (remove java bits) 5 years ago
build.sh Updated license information 8 years ago
make_common.mak Added CMake, removed java bits from build 5 years ago
make_linux.mak Fixed build path locations. Cleaned up code formatting 8 years ago
make_macosx.mak Fixed build path locations. Cleaned up code formatting 8 years ago
make_windows.mak Fixed build path locations. Cleaned up code formatting 8 years ago

README.md

Breaking the Data Transfer Bottleneck

UDT is a reliable UDP based application level data transport protocol for distributed data intensive applications over wide area high-speed networks. UDT uses UDP to transfer bulk data with its own reliability control and congestion control mechanisms. The new protocol can transfer data at a much higher speed than TCP does. UDT is also a highly configurable framework that can accommodate various congestion control algorithms.

TCP

TCP is slow. UDT is fast.

UDT

UDT is developed by Yunhong Gu and others at University of Illinois and Google.

UDT C++ implementation is available under BSD license

Key Features

Fast. UDT is designed for extremely high speed networks and it has been used to support global data transfer of terabyte sized data sets. UDT is the core technology in many commercial WAN acceleration products.

Fair and Friendly. Concurrent UDT flows can share the available bandwidth fairly, while UDT also leaves enough bandwidth for TCP.

Easy to Use. UDT resides completely at the application level. Users can simply download the software and start to use it. No kernel reconfiguration is needed. In addition, UDT's API is very similar to the traditional socket API so that existing applications can be easily modified.

Highly Configurable. UDT supports user defined congestion control algorithms with a simple configuration. Users may also modify UDT to suit various situations. This feature can also be used by students and researchers to investigate new control algorithms.

Firewall Friendly. UDT is completely based on UDP, which makes it easier to traverse the firewall. In addition, multiple UDT flows can share a single UDP port, thus a firewall can open only one UDP port for all UDT connections. UDT also supports rendezvous connection setup.

Supported Platforms

ARCH/OS Linux Mac OSX Windows
arm-android ???
arm-rpi ???
x86/i386 YES YES YES
x86-64/amd64 YES YES YES

Current Implementation

  • Updates to UDT source 4.11 to fix some misc. CPU timing bugs in Linux (via the sourceforge help forum).
  • Cleaned up source for cross-compile environment in linux
  • Cleaned up preprocessor symbols and removed deprecated
  • Strips unneeded symbols, drastically reducing size
  • Static linking to mingw libraries for windows build