From Pascal Quantin:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 18 Feb 2011 18:40:29 +0000 (18:40 +0000)
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 18 Feb 2011 18:40:29 +0000 (18:40 +0000)
NAS EPS] Fix display of Authentication (Failure) Parameter IEs

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5704

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36001 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-gsm_a_common.h
epan/dissectors/packet-gsm_a_dtap.c

index 7043763600e2df316758d8c44dd942d501a7b0fe..c6ab60413231d8cdfbae3cee999dd4738de52eb9 100644 (file)
@@ -952,10 +952,10 @@ typedef enum
 {
        /* Mobility Management Information Elements [3] 10.5.3 */
        DE_AUTH_PARAM_RAND,                             /* Authentication Parameter RAND */
-       DE_AUTH_PARAM_AUTN,                             /* Authentication Parameter AUTN (UMTS authentication challenge only) */
+       DE_AUTH_PARAM_AUTN,                             /* Authentication Parameter AUTN (UMTS and EPS authentication challenge) */
        DE_AUTH_RESP_PARAM,                             /* Authentication Response Parameter */
        DE_AUTH_RESP_PARAM_EXT,                 /* Authentication Response Parameter (extension) (UMTS authentication challenge only) */
-       DE_AUTH_FAIL_PARAM,                             /* Authentication Failure Parameter (UMTS authentication challenge only) */
+       DE_AUTH_FAIL_PARAM,                             /* Authentication Failure Parameter (UMTS and EPS authentication challenge) */
        DE_CM_SRVC_TYPE,                                /* CM Service Type */
        DE_ID_TYPE,                                             /* Identity Type */
        DE_LOC_UPD_TYPE,                                /* Location Updating Type */
index c9d95f695afc805af5eb223df422ab80e9008065..fedb9b22dc0c7a9260b6df98e810539c1e338cbb 100644 (file)
@@ -232,10 +232,10 @@ const value_string gsm_a_dtap_msg_tp_strings[] = {
 const value_string gsm_dtap_elem_strings[] = {
        /* Mobility Management Information Elements 10.5.3 */
        { 0x00, "Authentication Parameter RAND" },
-       { 0x00, "Authentication Parameter AUTN (UMTS authentication challenge only)" },
+       { 0x00, "Authentication Parameter AUTN (UMTS and EPS authentication challenge)" },
        { 0x00, "Authentication Response Parameter" },
        { 0x00, "Authentication Response Parameter (extension) (UMTS authentication challenge only)" },
-       { 0x00, "Authentication Failure Parameter (UMTS authentication challenge only)" },
+       { 0x00, "Authentication Failure Parameter (UMTS and EPS authentication challenge)" },
        { 0x00, "CM Service Type" },
        { 0x00, "Identity Type" },
        { 0x00, "Location Updating Type" },
@@ -4059,10 +4059,10 @@ de_tp_epc_ue_tl_b_lb_setup(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guin
 guint16 (*dtap_elem_fcn[])(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint len, gchar *add_string, int string_len) = {
        /* Mobility Management Information Elements 10.5.3 */
        de_auth_param_rand,     /* Authentication Parameter RAND */
-       de_auth_param_autn,     /* Authentication Parameter AUTN (UMTS authentication challenge only) */
+       de_auth_param_autn,     /* Authentication Parameter AUTN (UMTS and EPS authentication challenge) */
        de_auth_resp_param,     /* Authentication Response Parameter */
        de_auth_resp_param_ext, /* Authentication Response Parameter (extension) (UMTS authentication challenge only) */
-       de_auth_fail_param,     /* Authentication Failure Parameter (UMTS authentication challenge only) */
+       de_auth_fail_param,     /* Authentication Failure Parameter (UMTS and EPS authentication challenge) */
        NULL /* handled inline */,      /* CM Service Type */
        NULL /* handled inline */,      /* Identity Type */
        NULL /* handled inline */,      /* Location Updating Type */