UDP-based Data Transfer Protocol
 
 
 
 
 
Go to file
nathan 8272c251de Updated readme (remove java bits) 2017-12-03 00:37:26 +01:00
src Removed java bits. Updated release notes. 2017-12-03 00:19:08 +01:00
udt-doc Removed java bits. Updated release notes. 2017-12-03 00:19:08 +01:00
.gitignore Updated .gitignore 2017-12-03 00:16:11 +01:00
CMakeLists.txt Added CMake, removed java bits from build 2017-12-03 00:17:23 +01:00
LICENSE Updated license information 2015-01-22 02:31:38 +01:00
LICENSE.Apachev2 Updated license information 2015-01-22 02:31:38 +01:00
LICENSE.BSD Updated license information 2015-01-22 02:31:38 +01:00
README.md Updated readme (remove java bits) 2017-12-03 00:37:26 +01:00
build.sh Updated license information 2015-01-22 02:31:38 +01:00
make_common.mak Added CMake, removed java bits from build 2017-12-03 00:17:23 +01:00
make_linux.mak Fixed build path locations. Cleaned up code formatting 2015-07-07 00:34:06 +02:00
make_macosx.mak Fixed build path locations. Cleaned up code formatting 2015-07-07 00:34:06 +02:00
make_windows.mak Fixed build path locations. Cleaned up code formatting 2015-07-07 00:34:06 +02:00

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