From Pascal Quantin:

NAS EPS] Fix display of Authentication (Failure) Parameter IEs

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

svn path=/trunk/; revision=36001
This commit is contained in:
Anders Broman 2011-02-18 18:40:29 +00:00
parent 34dc101fcb
commit 0e6aa74d54
2 changed files with 6 additions and 6 deletions

View 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 */

View 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 */