Skip to content
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

Avoid unexpected "482 Request Merged" #211

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

datacat9
Copy link

This pull request consists of two commits and is aimed to avoid unexpected (wrong) "482 Request Merged" responses. These commits are implementing missing matching rules described in RFC3261 sections 17.2.3.1/2, and also fixing leg matching condition.

Use case: Call group calling process hunts sequentially for a group member that answers a group call. During a process it sends next INVITE upon previous one got canceled due to "No answer" or "Busy here" response. Such a next INVITE has different branch parameter in the topmost Via, however FreeSwitch (mod_sofia) still qualifies this new transaction as to be merged with an existing one. So the affords to add simple implementation of 17.2.3.1/2 rules and correcting the leg matching condition fixed the case.

Ilkka Nurlund added 2 commits April 10, 2023 08:04
  In certain cases 'leg_method' might be null so the IF statement:

    if (leg_method && method_name && !su_casematch(method_name, leg_method))
      continue;

  is not working at all despite 'method_name' is not null. It leads to
  leg matching process returns false positive at:

    if (loose_match == NULL)
      loose_match = leg;
…2.2; 17.2.3/

  Implements missing matching rules (17.2.3.1 and 17.2.3.2)
algitbot pushed a commit to alpinelinux/aports that referenced this pull request Apr 25, 2023
algitbot pushed a commit to alpinelinux/aports that referenced this pull request Apr 25, 2023
algitbot pushed a commit to alpinelinux/aports that referenced this pull request Apr 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant