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

Missing result codes and dict entries #51

Merged
merged 5 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,11 @@ public interface ResultCode {
*/
int ELECTION_LOST = 4003;

/**
* Request denied because the end user's account could not cover the requested service
*/
int CREDIT_CONTROL_LIMIT_REACHED = 4012;

/**
* The peer received a message that contained an AVP that is not recognized or supported and was marked with the
* Mandatory bit. A Diameter message with this error MUST contain one or more Failed- AVP AVP containing the AVPs
Expand Down
6 changes: 6 additions & 0 deletions core/jdiameter/impl/src/main/resources/dictionary.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2507,6 +2507,12 @@
<type type-name="IPAddress"/>
</avpdefn>

<avpdefn name="Number-Portability-Routing" code="2024" vendor-id="TGPP" mandatory="may" protected="mustnot"
may-encrypt="no" vendor-bit="must">
<type type-name="UTF8String"/>
</avpdefn>


<avpdefn name="IMS-Information" code="876" vendor-id="TGPP" mandatory="must" protected="mustnot" may-encrypt="no"
vendor-bit="must">
<grouped>
Expand Down