-
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-6178 Upgrade B2BUA to FS v1.10.10 #353
base: telnyx/telephony/development
Are you sure you want to change the base?
Conversation
handle time after 2038-01-18 22:14:07
[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
[Core] Fix crash in enterprise originate: memory fence the handles.
…ompiled binary if it's found in a folder pointed by the FreeSWITCHBuildCachePath environment variable.
…es not work on x64 system. Download yasm.exe 64bit instead.
[Build-System] Fix build on Windows 11: yasm tool compiled for x86 does not work on x64 system. Download yasm.exe 64bit instead.
[Build-System] Improve build time on Windows: Do not download a pre-compiled binary if it's found in a folder pointed by the FreeSWITCHBuildCachePath environment variable.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, it compiles and start without issues
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.