Skip to content

Star 1269 refactor get active clients function #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ea71c77
Merge pull request #13 from Unit-X/star-896-improve-shutdown-times
permobergedge Jul 7, 2023
63e4c4e
STAR-840: implement use of alternative log handler
Jun 28, 2023
7e0df1b
Merge pull request #12 from Unit-X/star-840-logging
Aug 2, 2023
67a4941
STAR-840: use same log levels as SRT
Aug 8, 2023
caffa16
Merge pull request #14 from Unit-X/star-840-correct-wrapper-logger
Aug 8, 2023
f22f020
STAR-951: Change caller mode to do automatic re-connect attempts
Sep 13, 2023
0f01c03
STAR-951: Fail the startClient call if server rejects the PSK
Sep 14, 2023
ed18e47
STAR-951: Change server side to enable re-opening of server socket
Sep 19, 2023
d57f86a
Merge pull request #15 from Unit-X/star-951-automatic-reconnect-in-ca…
permobergedge Sep 22, 2023
d496edb
STAR-959 Bump SRT version to v1.5.3 (#16)
tomasoh-ateliere Oct 3, 2023
59de6d2
STAR-964: Add new parameter to startClient functions
Oct 3, 2023
f26ad4d
Merge pull request #17 from Unit-X/star-964-make-startClient-more-fle…
permobergedge Oct 3, 2023
7d16dff
Clean up development logs from connect attempt
Oct 30, 2023
33e46d4
Merge pull request #18 from Unit-X/per/remove_and_lower_error_logs
permobergedge Oct 30, 2023
821ec1e
Add a small utility function to get the servers listening port
Nov 24, 2023
70360f5
Merge pull request #19 from Unit-X/per/utility_function_to_get_server…
permobergedge Nov 24, 2023
79ed6ad
STAR-1089: Re-use automatically selected server port
Dec 4, 2023
d062778
Merge pull request #20 from Unit-X/star-1089-store-automatic-selcted-…
permobergedge Dec 4, 2023
af14ddd
STAR-1232: Refactor how log handler is setup and used
Apr 4, 2024
faad412
Merge pull request #21 from Unit-X/star-1232-update-srt-logging-and-a…
permobergedge Apr 9, 2024
ad8d634
STAR-1254: Add a callback that user can set to be notified if caller …
Apr 26, 2024
9f8e22e
Merge pull request #22 from Unit-X/star-1254-add-callback-when-client…
permobergedge Apr 26, 2024
87bcdd1
STAR-1269: Refactor getActiveClients to return a copy of mClientList
May 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ include(ExternalProject)
ExternalProject_Add(project_srt
GIT_REPOSITORY https://github.com/Haivision/srt.git
# We use the git commit hash because it is faster
GIT_TAG 0bc3b03202b3159fc9b085b3ae6d66ec071c25d6 # v1.5.1
GIT_TAG 09f35c0f1743e23f514cb41444504a7faeacf89e # v1.5.3
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/srt
BINARY_DIR ${CMAKE_CURRENT_SOURCE_DIR}/srt
CONFIGURE_COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/srt/configure --CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
Expand All @@ -31,7 +31,8 @@ ExternalProject_Add(project_srt

ExternalProject_Add(project_srt_win
GIT_REPOSITORY https://github.com/Haivision/srt.git
GIT_TAG v1.5.1
# We use the git commit hash because it is faster
GIT_TAG 09f35c0f1743e23f514cb41444504a7faeacf89e #v1.5.3
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/srt
BINARY_DIR ${CMAKE_CURRENT_SOURCE_DIR}/srt
CONFIGURE_COMMAND cmake -DCMAKE_GENERATOR_PLATFORM=x64 -DENABLE_STDCXX_SYNC=ON ${CMAKE_CURRENT_SOURCE_DIR}/srt
Expand Down
Loading
Loading