mirror of
https://github.com/mii443/libdatachannel.git
synced 2025-08-23 15:48:03 +00:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
fd97f98f23 | |||
76d9ce5ba3 | |||
f795e3293f | |||
34aad791c6 | |||
30703741e5 | |||
124c073821 |
@ -1,6 +1,6 @@
|
||||
cmake_minimum_required(VERSION 3.7)
|
||||
project(libdatachannel
|
||||
VERSION 0.13.0
|
||||
VERSION 0.13.1
|
||||
LANGUAGES CXX)
|
||||
set(PROJECT_DESCRIPTION "WebRTC Data Channels Library")
|
||||
|
||||
@ -327,7 +327,7 @@ if(WARNINGS_AS_ERRORS)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
install(TARGETS datachannel EXPORT datachannel-export
|
||||
install(TARGETS datachannel EXPORT libdatachannel-config
|
||||
RUNTIME DESTINATION bin
|
||||
LIBRARY DESTINATION lib
|
||||
ARCHIVE DESTINATION lib
|
||||
@ -338,7 +338,7 @@ install(FILES ${LIBDATACHANNEL_HEADERS}
|
||||
)
|
||||
|
||||
install(
|
||||
EXPORT datachannel-export
|
||||
EXPORT libdatachannel-config
|
||||
NAMESPACE LibDatachannel::
|
||||
DESTINATION share/cmake/libdatachannel
|
||||
)
|
||||
|
2
deps/libjuice
vendored
2
deps/libjuice
vendored
Submodule deps/libjuice updated: 43933459d4...c65fea04f0
@ -416,9 +416,6 @@ void SctpTransport::incoming(message_ptr message) {
|
||||
|
||||
PLOG_VERBOSE << "Incoming size=" << message->size();
|
||||
|
||||
// TODO: There seems to be a possible data race between usrsctp_sendv() and usrsctp_conninput()
|
||||
// As a mitigation, lock the send mutex before calling usrsctp_conninput()
|
||||
std::lock_guard lock(mSendMutex);
|
||||
usrsctp_conninput(this, message->data(), message->size(), 0);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user