aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-s1ap.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2017-06-28 22:53:36 +0200
committerMichael Mann <mmann78@netscape.net>2017-06-29 00:42:21 +0000
commitd4c8b27d13abf5f5438ca3bc6b73b618ed7ca150 (patch)
treee4e2931cf80e2bdf8064e5d76e9a5cb827495775 /epan/dissectors/packet-s1ap.c
parent7460e6c9ec3046aa66a413e6710e0d0c3fcbbf69 (diff)
S1AP: upgrade dissector to v13.6.0
Change-Id: Ic75bd30ae77053241bebeb47e9b3e10529a8d0f7 Reviewed-on: https://code.wireshark.org/review/22451 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-s1ap.c')
-rw-r--r--epan/dissectors/packet-s1ap.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/epan/dissectors/packet-s1ap.c b/epan/dissectors/packet-s1ap.c
index e2f0455e17..cf44a97459 100644
--- a/epan/dissectors/packet-s1ap.c
+++ b/epan/dissectors/packet-s1ap.c
@@ -30,7 +30,7 @@
*
* Based on the RANAP dissector
*
- * References: 3GPP TS 36.413 V13.5.0 (2016-12)
+ * References: 3GPP TS 36.413 V13.6.0 (2017-06)
*/
#include "config.h"
@@ -6306,6 +6306,7 @@ static const value_string s1ap_OverloadAction_vals[] = {
{ 2, "permit-emergency-sessions-and-mobile-terminated-services-only" },
{ 3, "permit-high-priority-sessions-and-mobile-terminated-services-only" },
{ 4, "reject-delay-tolerant-access" },
+ { 5, "permit-high-priority-sessions-and-exception-reporting-and-mobile-terminated-services-only" },
{ 0, NULL }
};
@@ -6313,7 +6314,7 @@ static const value_string s1ap_OverloadAction_vals[] = {
static int
dissect_s1ap_OverloadAction(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
offset = dissect_per_enumerated(tvb, offset, actx, tree, hf_index,
- 3, NULL, TRUE, 2, NULL);
+ 3, NULL, TRUE, 3, NULL);
return offset;
}