diff options
author | Micael Karlberg <[email protected]> | 2010-05-06 14:22:23 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-05-06 14:22:23 +0000 |
commit | 76a5a13c7a2cbbb6a204e99ab0a6f30528c190da (patch) | |
tree | 19662de11f02e5bbc700ef348c3f2677d8f9e8dd /lib/snmp/src/agent/snmpa_usm.erl | |
parent | 56bb6dd185486f993c944ca0aa08cba571f36522 (diff) | |
download | otp-76a5a13c7a2cbbb6a204e99ab0a6f30528c190da.tar.gz otp-76a5a13c7a2cbbb6a204e99ab0a6f30528c190da.tar.bz2 otp-76a5a13c7a2cbbb6a204e99ab0a6f30528c190da.zip |
OTP-8563: Decode/Encode of Counter64 error
OTP-8574: Option to allow invalid row OIDs
OTP-8594: Make snmp forward compatible with new crypto
OTP-8595: snmpc fails to compile BITS with "holes"
Diffstat (limited to 'lib/snmp/src/agent/snmpa_usm.erl')
-rw-r--r-- | lib/snmp/src/agent/snmpa_usm.erl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/snmp/src/agent/snmpa_usm.erl b/lib/snmp/src/agent/snmpa_usm.erl index 12a6b996ff..b94294844b 100644 --- a/lib/snmp/src/agent/snmpa_usm.erl +++ b/lib/snmp/src/agent/snmpa_usm.erl @@ -560,11 +560,15 @@ encrypt(Data, PrivProtocol, PrivKey, SecLevel) -> ?vtrace("encrypt -> 3.1.4a",[]), case (catch try_encrypt(PrivProtocol, PrivKey, Data)) of {ok, ScopedPduData, MsgPrivParams} -> - ?vtrace("encrypt -> encode tag",[]), + ?vtrace("encrypt -> encrypted - now encode tag",[]), {snmp_pdus:enc_oct_str_tag(ScopedPduData), MsgPrivParams}; {error, Reason} -> + ?vtrace("encrypt -> error: " + "~n Reason: ~p", [Reason]), error(Reason); - _Error -> + Error -> + ?vtrace("encrypt -> other: " + "~n Error: ~p", [Error]), error(encryptionError) end end. |