Skip to content

Commit

Permalink
Merge pull request #152 from Faless/bump/libdatachannel_0.22.1_openss…
Browse files Browse the repository at this point in the history
…l_3.4.0

Update to libdatachannel 0.22.2 OpenSSL 3.4.0
  • Loading branch information
Faless authored Oct 25, 2024
2 parents effada6 + 038bac8 commit cb1ef2e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion build_profile.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"WebRTCDataChannelGDNative",
"WebRTCPeerConnectionGDNative",
"NativeScript",
"GDNativeLibrary"
"GDNativeLibrary",
"Window"
]
}
6 changes: 3 additions & 3 deletions thirdparty/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Module location:
## libdatachannel

- Upstream: https://github.com/paullouisageneau/libdatachannel
- Version: 0.20.2 (0b1074a9effeb8d9d3f4eca704d3fe3d2f9bc7e5, 2024)
- Version: 0.22.1 (f8ffbe37e6c06e4838b41c2c018ccc3a8028a1c8, 2024)
- License: MPL 2.0

Module location:
Expand All @@ -30,7 +30,7 @@ Module location:
# libjuice

- Upstream: https://github.com/paullouisageneau/libjuice
- Version: 1.3.4 (0b6f958baba55e1a4eb31ec2137f62b2e07382ae, 2024)
- Version: 1.5.7 (70ba50cce33350b64404557ea63658e925758ce6, 2024)
- License: MPL 2.0

Module location:
Expand All @@ -52,7 +52,7 @@ Module location:
## openssl

- Upstream: git://git.openssl.org/openssl.git
- Version: 3.0.13 (85cf92f55d9e2ac5aacf92bedd33fb890b9f8b4c, 2024)
- Version: 3.4.0 (98acb6b02839c609ef5b837794e08d906d965335, 2024)
- License: Apache 2.0

Module location:
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/libdatachannel
Submodule libdatachannel updated 79 files
+3 −1 .github/workflows/build-nomedia.yml
+4 −2 .github/workflows/build-openssl.yml
+24 −0 .github/workflows/check-version.yml
+1 −1 BUILDING.md
+118 −57 CMakeLists.txt
+12 −0 DOC.md
+2 −2 Jamfile
+2 −1 README.md
+2 −0 cmake/LibDataChannelConfig.cmake.in
+9 −0 cmake/version.h.in
+1 −1 deps/libjuice
+2 −2 examples/copy-paste-capi/CMakeLists.txt
+11 −0 examples/media-receiver/README.md
+88 −27 examples/signaling-server-nodejs/package-lock.json
+1 −1 examples/signaling-server-nodejs/package.json
+2 −2 examples/signaling-server-rust/Cargo.lock
+6 −3 examples/streamer/h264fileparser.cpp
+7 −0 include/rtc/configuration.hpp
+7 −5 include/rtc/description.hpp
+24 −0 include/rtc/frameinfo.hpp
+48 −0 include/rtc/h264rtpdepacketizer.hpp
+7 −2 include/rtc/message.hpp
+1 −0 include/rtc/nalunit.hpp
+49 −0 include/rtc/pacinghandler.hpp
+9 −1 include/rtc/peerconnection.hpp
+35 −0 include/rtc/rembhandler.hpp
+11 −0 include/rtc/rtc.h
+4 −0 include/rtc/rtc.hpp
+2 −19 include/rtc/rtp.hpp
+34 −0 include/rtc/rtpdepacketizer.hpp
+8 −0 include/rtc/rtppacketizationconfig.hpp
+2 −0 include/rtc/track.hpp
+9 −0 include/rtc/version.h
+3 −4 pages/Makefile
+0 −1 pages/content/extra/CNAME
+12 −0 pages/content/pages/reference.md
+7 −2 pages/pelicanconf.py
+2 −0 src/av1rtppacketizer.cpp
+1 −1 src/candidate.cpp
+22 −2 src/capi.cpp
+70 −52 src/description.cpp
+171 −0 src/h264rtpdepacketizer.cpp
+4 −2 src/h264rtppacketizer.cpp
+3 −2 src/h265rtppacketizer.cpp
+34 −10 src/impl/certificate.cpp
+3 −1 src/impl/certificate.hpp
+2 −2 src/impl/channel.hpp
+4 −1 src/impl/datachannel.cpp
+12 −11 src/impl/dtlstransport.cpp
+124 −80 src/impl/icetransport.cpp
+5 −1 src/impl/icetransport.hpp
+1 −1 src/impl/internals.hpp
+156 −47 src/impl/peerconnection.cpp
+16 −8 src/impl/peerconnection.hpp
+4 −3 src/impl/pollservice.cpp
+6 −7 src/impl/queue.hpp
+1 −1 src/impl/sctptransport.cpp
+1 −1 src/impl/sctptransport.hpp
+6 −2 src/impl/tcpserver.cpp
+1 −1 src/impl/tcptransport.cpp
+1 −1 src/impl/tls.cpp
+6 −1 src/impl/tlstransport.cpp
+56 −15 src/impl/track.cpp
+6 −0 src/impl/track.hpp
+1 −1 src/impl/verifiedtlstransport.cpp
+28 −19 src/impl/websocket.cpp
+1 −1 src/impl/websocket.hpp
+13 −9 src/impl/wshandshake.cpp
+4 −2 src/message.cpp
+72 −0 src/pacinghandler.cpp
+57 −25 src/peerconnection.cpp
+47 −0 src/rembhandler.cpp
+9 −1 src/rtp.cpp
+47 −0 src/rtpdepacketizer.cpp
+20 −0 src/rtppacketizer.cpp
+4 −0 src/track.cpp
+52 −0 test/connectivity.cpp
+9 −0 test/main.cpp
+3 −1 test/track.cpp
2 changes: 1 addition & 1 deletion thirdparty/openssl
Submodule openssl updated 22449 files

0 comments on commit cb1ef2e

Please sign in to comment.