diff options
| author | Anders Svensson <[email protected]> | 2013-09-30 13:25:06 +0200 | 
|---|---|---|
| committer | Anders Svensson <[email protected]> | 2013-11-28 17:27:26 +0100 | 
| commit | 8b82b718e7a02ef505d38f5b174b4213a0d5436a (patch) | |
| tree | d983b399cdc01895fdab6cac5185b37fe318d4fe | |
| parent | 20641fe0f2ea745873fc7557448d3a7deb1bd639 (diff) | |
| download | otp-8b82b718e7a02ef505d38f5b174b4213a0d5436a.tar.gz otp-8b82b718e7a02ef505d38f5b174b4213a0d5436a.tar.bz2 otp-8b82b718e7a02ef505d38f5b174b4213a0d5436a.zip | |
Don't hardcode diameter_base @prefix on common dictionary
| -rw-r--r-- | lib/diameter/src/base/diameter_capx.erl | 19 | 
1 files changed, 11 insertions, 8 deletions
| diff --git a/lib/diameter/src/base/diameter_capx.erl b/lib/diameter/src/base/diameter_capx.erl index 1a931a9854..93548ecafd 100644 --- a/lib/diameter/src/base/diameter_capx.erl +++ b/lib/diameter/src/base/diameter_capx.erl @@ -168,12 +168,13 @@ ipaddr(A) ->  %%  %% Build a CER record to send to a remote peer. -%% Use the fact that diameter_caps has the same field names as CER. +%% Use the fact that diameter_caps is expected to have the same field +%% names as CER.  bCER(#diameter_caps{} = Rec, Dict) -> -    Values = lists:zip(Dict:'#info-'(diameter_base_CER, fields), +    RecName = Dict:msg2rec('CER'), +    Values = lists:zip(Dict:'#info-'(RecName, fields),                         tl(tuple_to_list(Rec))), -    Dict:'#new-'(diameter_base_CER, [{K, map(K, V, Dict)} -                                     || {K,V} <- Values]). +    Dict:'#new-'(RecName, [{K, map(K, V, Dict)} || {K,V} <- Values]).  %% map/3  %% @@ -186,8 +187,9 @@ bCER(#diameter_caps{} = Rec, Dict) ->  %% since the corresponding dictionaries expect different values for a  %% 'Vendor-Id': a list for 3588, an integer for 6733. -map('Vendor-Specific-Application-Id', L, Dict) -> -    Rec = Dict:'#new-'('diameter_base_Vendor-Specific-Application-Id', []), +map('Vendor-Specific-Application-Id' = T, L, Dict) -> +    RecName = Dict:name2rec(T), +    Rec = Dict:'#new-'(RecName, []),      Def = Dict:'#get-'('Vendor-Id', Rec),      [vsa(V, Def) || V <- L];  map(_, V, _) -> @@ -342,8 +344,9 @@ cs(LS, RS) ->  %% CER is a subset of CEA, the latter adding Result-Code and a few  %% more AVP's.  cea_from_cer(CER, Dict) -> -    [diameter_base_CER | Values] = Dict:'#get-'(CER), -    Dict:'#set-'(Values, Dict:'#new-'(diameter_base_CEA)). +    RecName = Dict:msg2rec('CEA'), +    [_ | Values] = Dict:'#get-'(CER), +    Dict:'#set-'(Values, Dict:'#new-'(RecName)).  %% rCEA/3 | 
