Projects
Multimedia
libdatachannel
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 10
View file
_service
Changed
@@ -1,7 +1,7 @@ <services> <service name="obs_scm"> <param name="filename">libdatachannel</param> - <param name="revision">8e330edebfe766b44f59be427e0454fd18964d4e</param> + <param name="revision">443f6934d9007eb7076ab7825ba330f355fcbead</param> <param name="scm">git</param> <param name="submodules">disable</param> <param name="url">https://github.com/paullouisageneau/libdatachannel.git</param>
View file
_service:obs_scm:libdatachannel-0.24.4.obscpio/CMakeLists.txt -> _service:obs_scm:libdatachannel-0.24.5.obscpio/CMakeLists.txt
Changed
@@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.13) project(libdatachannel - VERSION 0.24.4 + VERSION 0.24.5 LANGUAGES CXX) set(PROJECT_DESCRIPTION "C/C++ WebRTC network library featuring Data Channels, Media Transport, and WebSockets")
View file
_service:obs_scm:libdatachannel-0.24.4.obscpio/include/rtc/version.h -> _service:obs_scm:libdatachannel-0.24.5.obscpio/include/rtc/version.h
Changed
@@ -3,7 +3,7 @@ #define RTC_VERSION_MAJOR 0 #define RTC_VERSION_MINOR 24 -#define RTC_VERSION_PATCH 4 -#define RTC_VERSION "0.24.4" +#define RTC_VERSION_PATCH 5 +#define RTC_VERSION "0.24.5" #endif
View file
_service:obs_scm:libdatachannel-0.24.4.obscpio/src/impl/sha.cpp -> _service:obs_scm:libdatachannel-0.24.5.obscpio/src/impl/sha.cpp
Changed
@@ -13,6 +13,7 @@ #if USE_GNUTLS #include <nettle/sha1.h> +#include <nettle/version.h> #elif USE_MBEDTLS @@ -39,7 +40,11 @@ struct sha1_ctx ctx; sha1_init(&ctx); sha1_update(&ctx, size, reinterpret_cast<const uint8_t *>(data)); +#if NETTLE_VERSION_MAJOR >= 4 + sha1_digest(&ctx, reinterpret_cast<uint8_t *>(output.data())); +#else sha1_digest(&ctx, SHA1_DIGEST_SIZE, reinterpret_cast<uint8_t *>(output.data())); +#endif return output; #elif USE_MBEDTLS
View file
_service:obs_scm:libdatachannel-0.24.4.obscpio/src/impl/tlstransport.cpp -> _service:obs_scm:libdatachannel-0.24.5.obscpio/src/impl/tlstransport.cpp
Changed
@@ -776,8 +776,10 @@ while (true) { { std::lock_guard lock(mSslMutex); - if (!incomingWritten) + if (!incomingWritten) { BIO_write(mInBio, message->data(), int(message->size())); + incomingWritten = true; + } ret = SSL_read(mSsl, buffer, bufferSize); err = SSL_get_error(mSsl, ret); flushOutput(); // SSL_read() can also cause write operations
View file
_service:obs_scm:libdatachannel.obsinfo
Changed
@@ -1,4 +1,4 @@ name: libdatachannel -version: 0.24.4 -mtime: 1780910010 -commit: 8e330edebfe766b44f59be427e0454fd18964d4e +version: 0.24.5 +mtime: 1781267114 +commit: 443f6934d9007eb7076ab7825ba330f355fcbead
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.