Skip to content

Releases: Haivision/srt

v1.3.4

20 Aug 16:04
196df3d
Compare
Choose a tag to compare

Release Notes

New Features and Enhancements

PR #720: Reason for rejected connection
PR #678: Improved sending pace accuracy
PR #796: Added a no-op for Windows in BUSY_WAITING mode

Fixed Issues

PR #808: Fixed UDP socket closure, while it is still used by another thread
PR #790: Fixed buffers average size calculation

Changelog

Click to expand/collapse

Core functionality

522d1ca Fixed invalid IN6_ADDR when setting TTL/HOPS or TOS/TCLASS
9245f81 Fix FreeBSD builds
64a197d Improving sending queue sleepto accuracy. (#678)
553b24a close Channel after stopping recv send queues (#808)
887bb6b Implemented and exposed rejection reason (#720)
04f7cce Unified strftime usage win/linux
e7d9e99 Fixed a few warnings
cf86388 remove pre-CRYSPR crypto lib wrappers
a77ec22 Only include intrin.h if not on MinGW
353c2bf Fix Windows no-op under MinGW
076bd60 Added a no-op for Windows in BUSY_WAITING mode
c929c61 Fixed buffers avg size calculation
9b7fade cryspr-gnutls: add "#include <gnutls/gnutls.h>"
03c73a1 crypspr.c: add "#include <stdlib.h>"
c79fb44 Fix issue#778: removed unnecessary openssl include in a crypto lib independent file.

Sample applications

79b898f Fix system priviledged port range, excluding port 1024 that is not reserved. (#812)
28b19dd examples: update test-c-* usage
b136458 Fixed correct symbols. Fixed also other occurrences where almost C++11 is suported
19d18f0 Updated support for gcc 4.7 in C++11 mode
c46cf08 Added full C++11 check and allowed gcc 4.7 as partial

Build scripts (CMake, etc.)

196df3d Bump version to 1.3.4
7ec45dd CMakeLists.txt: Allow building using gnustl
1d7196e travis: bump up osx_image version to 10.2
facd70c Travis MinGW: updated OpenSSL to 1.1.1

Documentation

caf9810 SRT Alliance Slack channel invitation link
408e6ec CMake install description (#828)
b564763 SRT Access Control Guidelines. Aded a Hostname key (#819)
b564763 SRT Access Control Guidelines. Aded a Hostname key (#819)

v1.3.3

26 Jul 19:51
5781e76
Compare
Choose a tag to compare

Release Notes

New Features and Enhancements

PR #760: Default max bandwidth limitation increased to 1 Gbps
PR #750: Added listener notification callback.
PR #748: Added support for mbedTLS encryption library.
PR #742: Added CRYpto Service PRovider for SRT.
PR #719: Added option to configure connection response timeout (SRTO_RSPTIMEO).
PR #711: Added USE_BUSY_WAITING build option
PR #648: Renamed Smoother to Congestion Control
PR #608: Added SRTO_IPV6ONLY option.

Fixed Issues

PR #763: Fixed input rate calculation for automatic bandwidth limit mode.
PR #745: Fixed SRT timers update on connection established.
PR #741: Fixed LATEREXMIT: use LastACK timer instead of connection expiration timer.
PR #690: Fixed packet retransmission in case of acknowledged packets in the loss list.
PR #644: Fixed StreamID and Smoother name swapping for big endian machines.
PR #623: Notify epoll the data is available to be read (reading thread speed up)
PR #618: Fixed periodic NAK report mode detection.
PR #613: Fixed a timestamp of ACKACK control packet, that was leading to occasional disconnections.
PR #471: Fix a problem when a connection is rejected when the last handshake was missed

Changelog

Click to expand/collapse

Core functionality

5781e76 Bump version to 1.3.3
80ea6ed Fixed HS response timestamp
a10b721 MAXBW infinite value updated to 1 Gbps. Previous value was 30 Mbps.
c852e18 Deprecated SRTO_TSBPDDELAY
10386ce Improved input rate calculation. SRTO_MAXBW=0; SRTO_INPUTBW=0;
759ae8d checkRexmitTimer refactoring
549024e checkRexmitTimer changes in logic
5609361 checkTimers split into several functions
8081c4e New feature: Listener notification callback (#750)
c99bec5 Introduced USE_BUSY_WAITING
d967441 MSC C++11 attributes support. noexcept, constexpr, override, final
9e34fe5 Minor code cleanup in processData() (#749)
cf2aeae Added mbedtls encryption library choice for haicrypt (#748)
96819d0 CRYSPR/4SRT: CRYpto Service PRovider for SRT (#742)
1fe378c Remove all references to CSndBuffer.m_iAvgPayloadSz that is not used anywhere.
08dd7be Fix possible FPE (Zero Divide)
2ecd6b1 Update timers on connection established.
5dde88a Synchronize pthread_join on TspPd
36d0714 Fixed after renaming logging to srt_logging
204352b Fix a problem when a connection is rejected when the last handshake was missed (#471)
439f653 FileCC minor code improvements
bd62214 Add option for configuring connection response timeout (#719)
6f6b76b Replaced Smoother name in the whole sources (#648)
ed67060 Introduced ENABLE_ENCRYPTION flag, ON by default. (#670)
ee311d6 Set IPv4 TOS and TTL when setting IPv6 TCLASS and HOPS
25d1dce Fixed packet retransmission. Do not break sending if a packet in the loss list was acknowledged.
9cbe541 Heavy log: fixed elapsed time calculation.
1079d13 Silencing the queues before closing the UDP socket (#662)
7c19251 Fixed StreamID and Smoother name swapping for big endian machines (#644)
d1ad82c Add SRTO_IPV6ONLY option (#608)
a892ad6 Not locking m_stats.startTime
2bdebef Fixed crash found with non-blocking linger in srt-live-transmit (#627)
686f72d Move ASSERT to guard possibly null pointer access
fc78683 Fixed compilation errors when SRT is configured with --disable-logging option (#616) (#632)
7a60510 Removed locking m_RecvLock from bstats
6ac5f0e Fixed sndDuration time source
6eaa7cb renamed internal stats variables
9b51ce1 Added core statistics access mutex
137adc5 Notify epoll the data is available to be read.
cac926f Added NAKREPORT SRTHS flag as per m_bRcvNakreport field (#618)
98404d5 Fixed a timestamp of ACKACK control packet. Issue #606
6e84a19 Fixes #601, if it didn't have a connection, it would never sleep. Causing 100% cpu.
fe6edbf fix empty condition in CEPoll::wait
3982719 Formatting srt.h. Extern keyword deleted (default).
04ade2e CUnitQueue access via functions.
2884047 Fixed wrong usage of seqcmp

Unit tests

8081c4e Listener notification callback unit test
3154fc3 Added SleeptoAccuracy (disabled)
7a85138 Improved epoll connection break test
c3e8d7f Fixed strict encryption check for accept in non-blocking mode
959ae55 Added test case for PR #605
7f9d5e6 Some basic CEPoll tests
bcd9b97 Added tests for CSeqNo
0c7d994 Added epoll NotifyConnectionBreak test

Sample applications

88a4c73 Added tsbpd URI query option
b269468 Refactor stats config to allow applications to write custom stats (#756)
92af4e1 UriParser improvements (#743)
4572752 Fixed timeout mode cancel when target connected
832b52d Added linger URI socket option
35ef083 Changed srt-multiplex to a testing application (#718)
31d6021 GetSysSocket() was not properly overridden due to differing function prototypes
2e6037e Fixed bug: colon and next arg both eat ARG_ONE argument
11feba2 Fixing build warnings
d199277 Fixed unused variable
c86c0c6 Fixing ProcessOptions
39ea526 Created TCP/SRT tunnel (#504)
f5f52c0 Fixed srt-file-transit (issue #645) (#658)
3ff0865 UriParser const identifiers added
9e48f03 Added CSV stats logging and file output (#598)
1e5fc1e Fixed stats clearing condition
c732d8d Fixed epoll connection issue. After PR #597.
a872e49 C examples update (#276)
08e7a36 srt-live-transmit: add option to cancel timeout (#570)
a0391c3 Receive the connection event on the client (caller) socket (#597)
deac356 Removed repeating new lines in verbose. Verb() prints new line itself.
1a97a3d Handle invalid options values properly.
c27d821 Minor fixes of the sample applications.

Build scripts (CMake, etc.)

27b1301 Fix strict enc build warnings
c05ca7d Fixed CMAKE_BUILD_TYPE=Debug processing
c4d94fc Fix static linking error for apps
6961a38 Deleted duplicating filelist.maf
faf9a10 Fix OSX Builds SDK pre 10.8. (#607)
f865119 Fix BSD Builds. Builds and the SRT library on FreeBSD-11, TrueOS-12, … (#588)
46d4887 Android build scripts for NDK r19
6398508 Removed stransmit symlink

Documentation

9773b1c Updated status badges in README
cdeb471 Add link to SRT Protocol Technical Overview (#736)
9432b48 Added description of 4 lacking options (#722)
ac21d5e Remove legacy references to stransmit (#725)
3d159f0 Added and updated handshake description (#351)
f78d598 Documentation Corrections (#635)
009ce24 Update stransmit.md
ba6fd19 Update README.md
f97cdc7 Added documentation for srt-multiplex
a2d900e Formatting fixes for API.md

v1.3.2

21 Feb 09:44
89cb478
Compare
Choose a tag to compare

Changelog

Core functionality

a306d36 Fixing noncompliant longlong (#400)
96d126a Added new option: SRTO_SNDDROPDELAY (#375)
9de61aa Fix IP options (TTL and ToS) on IPv6 sockets (#423)
1a975a4 api: Don't use inet_ntop
2f894b4 Refactored displaying of handshake HS flags. Added more logs (#367)
8faf6fe Fix potential crash in CCache::update (#434)
ba0a090 Fix bad usage of std::copy (#434)
e416a74 Removed unlicensed and unnecessary stdint.h. Fixed some warnings
71e10a7 do not treat WSAECONNRESET as a fatal error (#468)
c4c53b6 do not treat ECONNREFUSED as a fatal error (#468)
8f9ec9c Made WinSock non-blocking #383
fc0adbd Update logging.h for flushing log stream (#493)
78e063d Applied changes for strict encryption (#495)
bcbbe0f Introduced a platform-dependent IOVector class
2f96c39 Send UMSG_SHUTDOWN when caller closes the connection after reject on HS conclusion.
7621df9 Fixed memory issues.
de77c1d Fixes high CPU load on Windows with non-blocking sockets (after PR #483).
b538090 Don't search for uninitialized muxer ID on removeSocket The fatal error was showing if a socket was created, but nothing was done with it due to trying to find the unitialized muxer.
b71ea00 Don't use CTimer in CUDTUnited's constructor. s_UDTUnited is a static instance of * CUDTUnited with dynamic initialization (calling this constructor), while CTimer has a static * member s_ullCPUFrequency with dynamic initialization. The order of initialization is not * guaranteed.
6404396 Fixed TTL status handling by getStatus() funcion
c431177 Replaced ENABLE_LOGGING with ENABLE_HEAVY_LOGGING
5949796 Deleted unimplemented dCRcvBuffer::isReadyToPlay(...)
b884b13 Performance stats fixes (#575)
446fc1d Putting global objects with short names under a namespace (#576)
89cb478 Bump version to 1.3.2.

Unit tests

ff9e916 Added Unit tests, including ConnectionTimeout test from issue #468
56233ac ConnectionTimeout test improved. Avoid hang up on srt_epoll_wait().
4f7f2be Added unit tests for strict encryption
e116ec8 Strict encryption tests for blocking mode (#532)
785e2ca Added +/-30 ms confidence interval for connection timeout check
79e6153 ConnectionTimeout test. Epoll wait confidence interval increased to +/-50 ms
7da43a9 GCC unused warning suppressed

Sample applications

a9de399 Flushing the output in case of buffered stream and no EOL requested
f2e4c7e Set binary mode for stdin and stdout on Windows
08ef829 Ported srt-file-transmit on Windows
1c4ed3e Ported srt-test-file on Windows
48f2ef2 test app: transtype socket option should be set first
fa25247 Fixed memory leak in stransmit
53b87df Fixed catching polymorphic type by value

Build scripts (CMake, etc.)

1d4ed1a Fixed a 64-bit installation problem for library path (#421)
96c97d6 Make MAF files dependencies of CMakeLists (#387)
8d1ed9a win32: Only include inttypes.h with MSVC
aaa7631 cmake: Only install Windows headers in win subdir
72dd424 Build fixes for Windows / MingW
9711665 cmake: Try winpthread before pthreadGC2 (#429)
b80940e cmake: Prefer -lpthread for now because clang++ and VLC
cc8cd55 cmake: Don't confuse libs and requires (#433)
ce24643 Enable support for BoringSSL. (#448)
8891c53 Fix MingW build
03a3dfa Add MingW build to TravisCI
df15f35 Remove unnecessary custom win/inttypes.h
1736459 CMakeLists: more MinGW fixes
2a12191 Change every #ifdef WIN32 to check for _WIN32
ff9e4ad Rework OpenSSL find routine to use pkg-config method by default
61e0151 Fix SRT Private libraries allow for the applications to be linked against the correct C++ runtime library used by the toolchain.
69279a6 Fix redefinition of inet_pton with mingw-w64
8c60631 Support for CMake Object Library in XCode build.
4c3dccb Disable unit tests by default (Issue #489)
838eda0 Don't use pkg_check_modules for ios build.
d783f2e Don't use OPENSSL_ROOT_DIR
ee41d82 Fix mingw build.
209ff54 Added option to enable defining relative library path for applications. Fixes #499
e8a86d7 Additional CMakeLists adjustments. Added ENABLE_STATIC or ENABLE_SHARED check. Tabs used instead of spaces. If static linking is used, then rpath is ignored.
3b9cf5f CMakeLists.txt: Respect DESTDIR when creating stransmit symlink
7185a6a cmake: use system googletest if available Calling find_package() Fixes #500
2ef4ef0 Fix install_name in macOS using MACOS_RPATH
170663f Fix build with MinGW v6.0.0

Documentation

93660dd Fixed API Options table format in API.md (#419)
beb42c9 ReadMe.md: Deleted SRT slack channel link (for SRT alliance members only).
09a3b0c Incorrect wording
103be33 Spelling error corrected in README.md
239f8c9 Fixed incorrect declaration of return type
0f88cf2 Fixed wrong name of SRTO_SNDKMSTATE flag. Fixed some weird characters in formatting
795efd2 Added an example of using SRT with GStreamer
4e59464 Added information about maximum payload size (#459)
e46f114 Created a detailed documentation for SRT API functions (#540)

v1.3.1

15 Jun 19:52
Compare
Choose a tag to compare

Changelog

v1.3.1 (15/06/2018)

d6499ca Bump version to 1.3.1
192c5b3 Fixed handling of 'mode' parameter when listener in SrtModel (#415)
e9e0611 Fixed handling of BADSECRET/NOSECRET states in case of periodic HS (#414)
7dac65e Fixed problems in handshake handling (#361)
2b97b6e Fixed SRT handshake serialization (#360)
497cd98 Recorded HS SIDE if just resolved (#394)
901e748 Removed in-process decrypt failure logging. #404)
6999a27 Fixed setting target socket ID when accepted socket responds to the caller (#385)
febe51f Applied fixes for crypto in RX-to-TX cloning (#365)
1fa5736 Fixed internal problems in Rendezvous HSv5 FSM (#362)
f9c9e3c Fixed bug when crafting HS response after received waveahand version 4 (#354)
64184c3 Updated receiver bandwidth print to respect pf:json (#402)
739f91d Fixed typo in API docs. (#403)
38f7bba Fixed definitions of HLOG* macros, they were causing build break on Windows (#398)
2d0e6f7 Added instruction for problem reporting (#397)
acc0ae8 Adding a logging system for haicrypt (#359)
d3f0ae7 Added -pf option with values json and default (#345) (#356)
def12d5 Fixed TARGET_OS_IOS and TARGET_OS_TV usage (#380)
39536c4 Fixed long times constant error (#386)
6f99327 Added support for -v:2 for verbose to stdout (#366)
f4eb18c Added the source paramter to allow for igmpv3 ssm (#374)
5cc31f0 Added --with-extralibs build parameter (#376)
cce679c Timedwait fix (#379)
b851180 Added socket options to tweak KM refresh parameters, fixed uninitialized var (#350)
09212be Added removeConnector to exe path where connection is no longer to be processed. (#349)
1b6aa2b Added a bidirectional transmission testing application. (#348)
d9aa9e7 Fixed API Options table format (#346)
24a625d Do not expose internals unneeded by the external API (#340)
c6b0cdf like CYGWIN, MINGW does the right thing with static library name.
7bf7021 Fixed windows build when only building the static library.
5772dea Useed the correct printf format macros for WIN32/MINGW for size_t.
5d12019 Fixed code violating C++ Standards.

v1.3.0

09 Apr 22:09
5276995
Compare
Choose a tag to compare

Changelog

v1.3.0 (09/04/2018)

2499cfe Fix SRT file transmit app to work in non-blocking mode (#334)
dd57405 Ensure stdout silence in console pipe out mode plus a few minor fixups (#275)
85cd96d Merged dev. Added thread changes in cmake as commented-out, to be checked later.
22d8d32 Replaced hardcoded installdirs with GNUInstallDirs. Fixed some status messages. (#323)
236c23c Breaking connection when recv buffer inflation caused sequence discrepancy (#300)
1a28026 Fixed problems with encryption decision and status report on encryption failure. (#318)
ff98b0d Fixed invalid symbol names in doc (#311)
0344f0d Dev add version to winpackages (#328)
a34e761 Android build for dev (#326)
89f261f Change License to MPLv2.0 (#327)
5dff5d8 Used constants for input rate. Fixed after-start rate sampling period to 1s (#315)
692f331 Made SockaddrToString use only numeric string by default (#312)
ba4da73 Ported change in #307 PR to dev
b47cf11 Fixed SockaddrToString to format as 4dotIP if unknown (#299)
98e86ac Build with debug information for lldb on iOS platform (#302)
dade14d Fix for sudden stop sending data on macOS/iOS (#303)
84d5e5e Fix broken build when testing apps enabled (#296)
0006128 Removed all code introduced for CBR (#293)
1476472 Added API to get instantaneous stats instead of moving averages for a… (#288)
8b9e0cc Added toolchain file and build instruction for iOS (#286)
5e0f2f8 Fix windows build (#290)
7ddab84 Add compiling instructions for android (#278)
a6a5853 Removed haicrypt compiled separately. Improved MafRead to add prefix internally. (#279)
436ee5a Fixed potential problem with non-NUL-termination of error message string. (#285)
fcb5c70 Fixes in configure options (#273)
e404ffc Reshaped source files and applications. Preparations for splitting off tests. (#270)
c432178 Added a fix for pthread finding when crosscompiling
8626b9e Correct usage of legacy defines
43d5450 srt-live-transmit stability fixes and improvements
9e8c640 Stransmit new stats (#264)
cfd08bc apps: improve command line parameters
3314544 app: refactor name transmit_total_stats
e4b567f apps: fix stats clearing in each loop and add option for full counters
7a3617a core: fix reset of other stat values
6219009 core: fix perf->pktRcvRetrans use
35a0976 Changed direct & to walk around user-defined operator
5627c0a Updated lost docs with fixes
fb7ec1e Added more logs
5b648ab stransmit cleanup stats and print sender
b699950 Added some more error logs for errors in reception
dc2a555 Fix interop with SRT 1.1.x peer: removed call to handshakeDone in postConnect preventing HSv4 to proceed. Symptoms: Latency=0 and PeerSrtVersion=0 when connected. Lost packet recovery impossible. (#250)
f374655 Added also const and explicit getter for sockaddr (#248)
b3b14f1 Added lacking which caused errors only on some compilers (#246)
61629ab Added . and ../lib64 to rpath in SRT apps (#244)
2a5bf34 Made common source shared and static libraries. (#240)
127bdd6 Removed compat code for clock_gettime. This function wasn't used in SRT. (#236)
e0013dd Added extra option --enable-heavy-logging. Enabled default only in debug mode. The --enable-logging option does not enable it. All debug logs are under HLOG and won't appear without this enabled. Added extra info for configure. (#234)
1b8a4c2 Fixed broken crosscompiler support (#228)
fc599c7 Fixed ThreadName constructor to restore old thread name in destructor. Added CMake options to map THREADHCHECK macros to application's functions. Synched THREADCHECK and prctl thread names.
de28dbf Added more logs around rejection (#198)
a4bf533 Maintenance: merge master 1.2.2 (#215)
1d020c2 Blocked updateCC after altering MAXBW/OHEADBW/INPUTBW flags. Called only on connected socket.
a173fad Fixed bug in checking stoptime option
5fd1320 Added some comment fixes
f43b018 Fix compile error with gcc version 4.4.1
80eabe7 Changed FA selection imp to std::bitset. (#194)
f91623f Added more logging around listener errors
09f886a Changed stransmit form to symlink on platforms where supported. Otherwise cmake 3.0.2 required.
1136cbf Added -stoptime option. Improved exit predictability.
2ee1d30 Put creation under execption catch. This prevents crash-dump when interrupted.
34cc6f8 Fixed lacking include for getnameinfo
f2cb544 Added build improvements from 'master' branch.
89a8d8c Improved logging API for performance (#182)
9b16757 Restored dep check for all cases. Add path autodetection and prefix suppying in configure.
7638ced Fixes for embedded compiling (#178)
7c8873c Restored old behavior when parties declare encryption differently. (#175)
2f1f813 restored --with-compiler-prefix option
4a28039 Fix typo in srtcore/udt.h
e105138 Refactored the use of ref_t. Also fixes a crash. (#146)
0ce9663 Changed tm init for C++ to avoid warning for skipped initializers (#144)
1217bdf Remove UDTSTATUS enum in favor of pre-processor redefines
eebe82f Minor fixes for backward compatibility with legacy applications
4ff74e1 Create an autogenerated version.h providing SRT_VERSION_VALUE and SRT_VERSION_STRING preprocessor macros so that API users can query the libray version at compile time.
eeabeae Use CMAKE_CURRENT_SOURCE_DIR instead of CMAKE_SOURCE_DIR when referencing files in the CMake Project so that SRT can be built as a subproject using add_subdirectory() in a larger project and not only has a standalone project.
4678446 Fix static builds on linux against static OpenSSL. OpenSSL uses dlopen and friends, but the find_package(OpenSSL) does not pick up on the fact that libdl is required when building both the SRT library statically and linking statically to OpenSSL.
7fd7c0f Fixed passing the chunk size by transmit to SRTO_PAYLOADSIZE option
84a4202 Workaround for a hangup during cleanup (proper fix required) (#128)
13df2de Fixed incorrectly interpreted error from WSARecvFrom on Windows (#124)
a097e67 Fixed not working logging mechanism on Windows (#123)
4b897ba Applied changes in the API to make it universal (#121)
f9ccaa0 Perform brew update in Travis CI to fix #125
ef4fedb Fixed correctly flushing send buffers on closing a socket. (#119)
b3ef89a Removed srt_compat from app sources (#111)
6ba76b1 Refactor: extracting packet's sequence number only (#117)
eae5256 Made locking in drift tracing done inside the function and only if needed. To prevent deadlock when sending in buffer mode. (#114)
9c42b34 A bunch of refactoring before changes in the API (#110)
4a575c2 Changed global variables to static
394f119 Updated options for handling disabled flushing before closing
397ba4d Added REUSEADDR option to not lock the port when reading
c3d0344 Merge branch 'dev-fix-multicast-windows' of github.com:ethouris/srt into dev-fix-multicast-windows
d04eb32 Fixed incorrect family when using INADDR_ANY for multicast
0acc534 Fixed indent
a9b3e85 Fixed lacking include for localtime_s on Windows
53bdbbf Fixed problem with compiling a C file with -std=c++11 flag
291f1c7 Fixed bind problem with multicast on Windows. Added more sensible error reporting for UDP
bd9c778 Replaced std::pair with struct {first; second;} to avoid constructor syntax in initialization
0f8b808 Changed smoother name association imp to a static-initialized array
458f6d5 Changed backward-name copying to use generator expr
534dc70 Forced CMP0026 policy on cmake. To ignore the use of LOCATION.
dddbd28 Some fixes for Windows. Correctly extracted path to executable. Fixed invalid haicrypt dep.
baaaa5a Renamed apps to more appropriate names. Preserving 'stransmit' name for BW compat. Enforced relative rpath on all apps.
bc28ca4 Fixed a bug in file transmission app. Regards that srt_send may send only a fragment of buffer.
31c1b82 Fixed according to code review and compile errors
9748eef Restored old names as deprecated
b676b5e Blocked sf from compiling on Windows. Portability issue of using stat must be fixed.
7d6c883 Blocked setsockopt/ioctl imp on Windows.
4cb5242 Created a Smoother framework for configurable congestion control. Moved all CC-related parts of SRT to LiveSmoother. Restored abandoned UDT parts to be usable with FileSmoother.
9c7c2fe Refactoring changes as a preparation for file transfer support (congestion control)
c91d5f7 The integrated handshake feature (aka HSv5) with some refactoring (#76)

v1.2.3

v1.2.2

20 Nov 21:01
Compare
Choose a tag to compare

v1.2.1

16 Nov 13:27
Compare
Choose a tag to compare

Change Log

v1.2.1 (2017/11/16 13:22 +00:00)

v1.2.0

28 Jul 20:33
Compare
Choose a tag to compare

Change Log

v1.2.0 (2017/07/28 20:31 +00:00)

Read more