| OLD | NEW |
| (Empty) |
| 1 Copyright (c) 2001 - 2011, The Board of Trustees of the University of Illinois. | |
| 2 All Rights Reserved. | |
| 3 | |
| 4 UDP-based Data Transfer (UDT) Library - version 4 | |
| 5 Author: Yunhong Gu [yunhong.gu @ gmail.com] | |
| 6 | |
| 7 UDT version 4 is free software under BSD License. See ./LICENSE.txt. | |
| 8 | |
| 9 ============================================================================ | |
| 10 | |
| 11 UDT Website: | |
| 12 http://udt.sf.net | |
| 13 http://sf.net/projects/udt/ | |
| 14 | |
| 15 | |
| 16 CONTENT: | |
| 17 ./src: UDT source code | |
| 18 ./app: Example programs | |
| 19 ./doc: UDT documentation (HTML) | |
| 20 ./win: Visual C++ project files for the Windows version of UDT | |
| 21 | |
| 22 | |
| 23 To make: | |
| 24 make -e os=XXX arch=YYY | |
| 25 | |
| 26 XXX: [LINUX(default), BSD, OSX] | |
| 27 YYY: [IA32(default), POWERPC, IA64, AMD64] | |
| 28 | |
| 29 For example, on OS X, you may need to do "make -e os=OSX arch=POWERPC"; | |
| 30 on 32-bit i386 Linux system, simply use "make". | |
| 31 | |
| 32 On Windows systems, use the Visual C++ project files in ./win directory. | |
| 33 | |
| 34 | |
| 35 To use UDT in your application: | |
| 36 Read index.htm in ./doc. The documentation is in HTML format and requires your | |
| 37 browser to support JavaScript. | |
| 38 | |
| 39 | |
| 40 Questions? please post to the UDT project forum: | |
| 41 https://sourceforge.net/projects/udt/forums | |
| OLD | NEW |