diff options
author | Anders Svensson <[email protected]> | 2014-04-07 09:39:16 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2014-04-07 10:19:38 +0200 |
commit | 558317c4a559afb26caba7f57a854d49020ea6cb (patch) | |
tree | ae386ec926ffe494010a3363e8cf43c6854925dc | |
parent | e98183e86eac05d9d35dab4d34b5b6537ffcde74 (diff) | |
download | otp-558317c4a559afb26caba7f57a854d49020ea6cb.tar.gz otp-558317c4a559afb26caba7f57a854d49020ea6cb.tar.bz2 otp-558317c4a559afb26caba7f57a854d49020ea6cb.zip |
Fix diameter.hrl comment typos
A Diameter Header Command Code is 24 bits, not 8, and an Application-ID
is 32 bits, not 24.
Thanks to Austin Aigbe for pointing it out.
-rw-r--r-- | lib/diameter/include/diameter.hrl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/diameter/include/diameter.hrl b/lib/diameter/include/diameter.hrl index 79c4dce541..5a40e42300 100644 --- a/lib/diameter/include/diameter.hrl +++ b/lib/diameter/include/diameter.hrl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2010-2013. All Rights Reserved. +%% Copyright Ericsson AB 2010-2014. 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 @@ -58,8 +58,8 @@ -record(diameter_header, {version, %% 8-bit unsigned length, %% 24-bit unsigned - cmd_code, %% 8-bit unsigned - application_id, %% 24-bit unsigned + cmd_code, %% 24-bit unsigned + application_id, %% 32-bit unsigned hop_by_hop_id, %% 32-bit unsigned end_to_end_id, %% 32-bit unsigned is_request, %% boolean() R flag |