diff options
author | Anders Svensson <[email protected]> | 2017-03-06 19:37:54 +0100 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2017-03-08 07:34:06 +0100 |
commit | e4f28f3b45b58604f2022b321185e164441f9cd7 (patch) | |
tree | c492e9226b827c2e04ec52c0c9685354b747ef54 /lib/diameter/src/base/diameter_config.erl | |
parent | 3473ecd83a7bbe7e0bebb865f25dddb93e3bf10f (diff) | |
download | otp-e4f28f3b45b58604f2022b321185e164441f9cd7.tar.gz otp-e4f28f3b45b58604f2022b321185e164441f9cd7.tar.bz2 otp-e4f28f3b45b58604f2022b321185e164441f9cd7.zip |
Add transport_opt() capx_strictness
To allow the Peer State Machine requirement that only the expected
capabilities exchange message be received in the relevant state to be
relaxed. If {capx_strictness, false} is configured then anything bu the
expected CER/CEA is ignored.
This is non-standard behaviour, and thusfar undocumented. Use at your
own risk.
Diffstat (limited to 'lib/diameter/src/base/diameter_config.erl')
-rw-r--r-- | lib/diameter/src/base/diameter_config.erl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/diameter/src/base/diameter_config.erl b/lib/diameter/src/base/diameter_config.erl index fdbbd412a1..245a3ea7ac 100644 --- a/lib/diameter/src/base/diameter_config.erl +++ b/lib/diameter/src/base/diameter_config.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2010-2016. All Rights Reserved. +%% Copyright Ericsson AB 2010-2017. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -580,6 +580,9 @@ opt({K, Tmo}) K == dpa_timeout -> ?IS_UINT32(Tmo); +opt({capx_strictness, B}) -> + is_boolean(B); + opt({length_errors, T}) -> lists:member(T, [exit, handle, discard]); |