Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asterisk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Voice
asterisk
Commits
b5979e2c
Commit
b5979e2c
authored
1 year ago
by
Asterisk Development Team
Browse files
Options
Downloads
Patches
Plain Diff
Update for certified-18.9-cert7
parent
390a994e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.version
+1
-1
1 addition, 1 deletion
.version
CHANGES.md
+1
-1
1 addition, 1 deletion
CHANGES.md
ChangeLogs/ChangeLog-certified-18.9-cert7.md
+68
-0
68 additions, 0 deletions
ChangeLogs/ChangeLog-certified-18.9-cert7.md
with
70 additions
and
2 deletions
.version
+
1
−
1
View file @
b5979e2c
certified-18.9-cert
6
certified-18.9-cert
7
This diff is collapsed.
Click to expand it.
CHANGES.md
+
1
−
1
View file @
b5979e2c
ChangeLogs/ChangeLog-certified-18.9-cert6.md
\ No newline at end of file
ChangeLogs/ChangeLog-certified-18.9-cert7.md
\ No newline at end of file
This diff is collapsed.
Click to expand it.
ChangeLogs/ChangeLog-certified-18.9-cert7.md
0 → 100644
+
68
−
0
View file @
b5979e2c
Change Log for Release asterisk-certified-18.9-cert7
========================================
Links:
----------------------------------------
-
[
Full ChangeLog
](
https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-certified-18.9-cert7.md
)
-
[
GitHub Diff
](
https://github.com/asterisk/asterisk/compare/certified-18.9-cert6...certified-18.9-cert7
)
-
[
Tarball
](
https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-certified-18.9-cert7.tar.gz
)
-
[
Downloads
](
https://downloads.asterisk.org/pub/telephony/asterisk
)
Summary:
----------------------------------------
-
res_rtp_asterisk: Fix regression issues with DTLS client check
User Notes:
----------------------------------------
Upgrade Notes:
----------------------------------------
Closed Issues:
----------------------------------------
-
#500: [bug regression]: res_rtp_asterisk doesn't build if pjproject isn't used
-
#503: [bug]: The res_rtp_asterisk DTLS check against ICE candidates fails when it shouldn't
-
#505: [bug]: res_pjproject: ast_sockaddr_cmp() always fails on sockaddrs created by ast_sockaddr_from_pj_sockaddr()
Commits By Author:
----------------------------------------
-
### George Joseph (1):
-
res_rtp_asterisk: Fix regression issues with DTLS client check
Detail:
----------------------------------------
-
### res_rtp_asterisk: Fix regression issues with DTLS client check
Author: George Joseph
Date: 2023-12-15
*
Since ICE candidates are used for the check and pjproject is
required to use ICE, res_rtp_asterisk was failing to compile
when pjproject wasn't available. The check is now wrapped
with an #ifdef HAVE_PJPROJECT.
*
The rtp->ice_active_remote_candidates container was being
used to check the address on incoming packets but that
container doesn't contain peer reflexive candidates discovered
during negotiation. This was causing the check to fail
where it shouldn't. We now check against pjproject's
real_ice->rcand array which will contain those candidates.
*
Also fixed a bug in ast_sockaddr_from_pj_sockaddr() where
we weren't zeroing out sin->sin_zero before returning. This
was causing ast_sockaddr_cmp() to always return false when
one of the inputs was converted from a pj_sockaddr, even
if both inputs had the same address and port.
Resolves: #500
Resolves: #503
Resolves: #505
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment