aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_sms.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2015-05-20 15:45:20 +0200
committerPascal Quantin <pascal.quantin@gmail.com>2015-05-20 17:21:31 +0000
commit2acb57d703ce4a3f90ca032167700e059a33f0a7 (patch)
tree1752aa4e5d20c77230df3af1ff127434c63dad02 /epan/dissectors/packet-gsm_sms.c
parenta30000a805a8087b111f82c259f80b60b36512cb (diff)
GSM SMS: update some (value|range)_string tables for MTC Device Trigger feature
Change-Id: Iffc62744310688d2f5f4d6689ff2f9d96fd4f6f1 Reviewed-on: https://code.wireshark.org/review/8552 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-gsm_sms.c')
-rw-r--r--epan/dissectors/packet-gsm_sms.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/epan/dissectors/packet-gsm_sms.c b/epan/dissectors/packet-gsm_sms.c
index 8c8dfb5b5e..3b0ab8541f 100644
--- a/epan/dissectors/packet-gsm_sms.c
+++ b/epan/dissectors/packet-gsm_sms.c
@@ -577,7 +577,7 @@ static const range_string tp_pid_device_type_rvals[] = {
{ 0x12, 0x12, "Internet Electronic Mail" },
{ 0x13, 0x17, "Reserved" },
{ 0x18, 0x1E, "values specific to each SC" },
- { 0x1F, 0x1F, "Reserved" },
+ { 0x1F, 0x1F, "GSM/UMTS mobile station" },
{ 0, 0, NULL }
};
@@ -590,6 +590,7 @@ static const value_string pid_message_type_vals[] = {
{0x05, "Replace Short Message Type 5"},
{0x06, "Replace Short Message Type 6"},
{0x07, "Replace Short Message Type 7"},
+ {0x08, "Device Triggering Short Message"},
{0x1e, "Enhanced Message Service (Obsolete)"},
{0x1f, "Return Call Message"},
{0x3c, "ANSI-136 R-DATA"},
@@ -1289,9 +1290,10 @@ dis_iei_apa_8bit(tvbuff_t *tvb, packet_info* pinfo, proto_tree *tree, guint32 of
/* 9.2.3.24.4 */
static const range_string gsm_sms_16bit_port_values[] = {
- { 0, 16000, "As allocated by IANA (http://www.IANA.com/)" },
- { 16001, 16999, "Available for allocation by applications" },
- { 17000, 0xFFFF, "Reserved" },
+ { 0, 15999, "UDP/TCP port numbers assigned by IANA without the need to refer to 3GPP" },
+ { 16000, 16999, "Available for allocation by SMS applications without the need to refer to 3GPP or IANA" },
+ { 17000, 49151, "UDP/TCP port numbers assigned by IANA" },
+ { 49152, 65535, "Reserved for future allocation by 3GPP" },
{ 0, 0, NULL }
};