diff options
author | Anders Svensson <[email protected]> | 2015-03-07 15:50:05 +0100 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2015-03-22 10:02:42 +0100 |
commit | c0687e03e538daab2f8fddda6cd3a235fc6ed447 (patch) | |
tree | 6c430feb482b128f1af9fddfc151f8cba300794d /lib/diameter/src/base/diameter_config.erl | |
parent | 09b4d69fd706ee8aa7686828fe80590d6115bf64 (diff) | |
download | otp-c0687e03e538daab2f8fddda6cd3a235fc6ed447.tar.gz otp-c0687e03e538daab2f8fddda6cd3a235fc6ed447.tar.bz2 otp-c0687e03e538daab2f8fddda6cd3a235fc6ed447.zip |
Add transport_opt() dpa_timeout
To make the default DPA timeout configurable. The timeout say how many
milliseconds to wait for DPA in response to an outgoing DPR before
terminating the transport process regardless.
Diffstat (limited to 'lib/diameter/src/base/diameter_config.erl')
-rw-r--r-- | lib/diameter/src/base/diameter_config.erl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/diameter/src/base/diameter_config.erl b/lib/diameter/src/base/diameter_config.erl index dd1c9b73bb..c9a5beaf55 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-2014. All Rights Reserved. +%% Copyright Ericsson AB 2010-2015. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -531,7 +531,9 @@ opt({applications, As}) -> opt({capabilities, Os}) -> is_list(Os) andalso ok == encode_CER(Os); -opt({capx_timeout, Tmo}) -> +opt({K, Tmo}) + when K == capx_timeout; + K == dpa_timeout -> ?IS_UINT32(Tmo); opt({length_errors, T}) -> |