forked from signalwire/freeswitch
-
Notifications
You must be signed in to change notification settings - Fork 6
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
TEL-5552: update freeswitch to v1.10.10 #228
Draft
Elhodred
wants to merge
444
commits into
telnyx/telephony/master
Choose a base branch
from
jira-tel-5552
base: telnyx/telephony/master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
+22,520
−187,351
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Build-System] Add signalwire.conf.xml to the freeswitch.spec
[mod_sofia] Fix handling of late offer
* Add: -s key adding log events filter UUID on fs_cli startup * Add: long option --set-log-uuid
[Build-System] Disable static build by default on Linux.
[Packaging] Shared libraries instead of static in freeswitch devel CentOS package.
[unit-tests][build-system][docs] remove references to ZRTP.
[core][mod_sofia] remove ZRTP (deemed obsolete).
this prevents a scenario where freeswitch.log fails to get rotated and eventually fills up the hard drive causing a crash. See issue signalwire#1738
[mod_smpp] Fix use of switch_event_add_header_string with SWITCH_STACK_NODUP.
…. Introduce switch_event_add_header_string_nodup() API.
[Core] SWITCH_STACK_NODUP flag is deprecated and will be soon removed. Introduce switch_event_add_header_string_nodup() API.
…_add_header_string() behavior to always dup.
[Core] Remove deprecated SWITCH_STACK_NODUP flag. Change switch_event_add_header_string() behavior to always dup.
In FS-6400, the attempt was made to randomize OPTIONS packets to be sent at a random interval. The same random interval is applied to all endpoints so this doesn't work. Furthermore, rounding within the code, as well as reseeding with srand() on each run will ultimately make the ping times converge over time. Once the times converge, they will not separate since the reseeding will cause the same random number to apply to each registration. This commmit will apply the random interval only during initial registration and update of registration. All subsequent pings will be incremented with the actual value of ping-mean-interval. (This parameter name is no longer accurate, and would be better named ping-max-interval). srand() has been moved to the start of the worker thread, and all repeat calls have been removed, so that each call of rand(), even during the same second, generates a different random number. Fixes signalwire#1132, Fixes signalwire#1133
[mod_rtmp] Add OpenSSL 3 support.
[mod_shout] Replace deprecated meta functions with shout_set_meta()
…l_get_variable_buf() APIs that avoid allocating channel variables in a session's memory pool.
Co-authored-by: Matteo Brancaleoni <[email protected]>
Co-authored-by: Sergei Rozhkov <[email protected]>
…add_context_header [mod_verto] Add context into msg event header
[Configuration]Update freeswitch.xml
Fix in switch_console.c file. Adds column names when inserting data. Calls to use the complete table in Galera Multi-Master Cluster
…itch_is_uint_in_range() API.
This reverts commit 8e59603.
This reverts commit f7c94bc.
Elhodred
requested review from
mishehu,
dev-ryanc,
baloeng and
minhtuan1407-telnyx
September 13, 2023 18:36
minhtuan1407-telnyx
force-pushed
the
telnyx/telephony/master
branch
from
February 27, 2024 15:35
c459bd4
to
1afc1ed
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Please, have a special look to
avformat.c
,mod_avmd.c
and all zrtp related stuff. Those were the most convoluted points to merge