aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-at.c
diff options
context:
space:
mode:
authorDarien Spencer <cusneud@mail.com>2018-08-16 11:28:59 +0300
committerAnders Broman <a.broman58@gmail.com>2018-08-16 19:30:17 +0000
commita322cf78426b6d112efd84a31c97e9c261e8bb90 (patch)
tree77e3e45fc90d9c3d0a8647d7f9e857b1b8b8eab3 /epan/dissectors/packet-at.c
parent89fce9542253d5f5f41f040033b2a21d96b3557a (diff)
AT: Reorder commands dictionary
Now in alphabetical order Change-Id: I28d863fc176518a2c26c417257f657f9d888ceb7 Reviewed-on: https://code.wireshark.org/review/29156 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-at.c')
-rw-r--r--epan/dissectors/packet-at.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-at.c b/epan/dissectors/packet-at.c
index aae94293b4..8f528cc6cb 100644
--- a/epan/dissectors/packet-at.c
+++ b/epan/dissectors/packet-at.c
@@ -1231,20 +1231,20 @@ static const at_cmd_t at_cmds[] = {
{ "+CGMM", "Request model identification", check_cgmm, dissect_cgmm_parameter },
{ "+CHLD", "Call Hold and Multiparty Handling", check_chld, dissect_chld_parameter },
{ "+CHUP", "Call Hang-up", check_chup, dissect_no_parameter },
+ { "+CIEV", "Indicator Events Reporting", check_ciev, dissect_ciev_parameter },
{ "+CIMI", "Request International Mobile Subsciber Identity (IMSI)", check_cimi, dissect_cimi_parameter },
{ "^CIMI", "Request International Mobile Subsciber Identity (IMSI)", check_cimi, dissect_cimi_parameter },
{ "+CIND", "Phone Indicators", check_cind, dissect_cind_parameter },
{ "+CLCC", "Current Calls", check_clcc, dissect_clcc_parameter },
+ { "+CLIP", "Calling Line Identification Notification", check_clip, dissect_clip_parameter },
+ { "+CME ERROR", "Mobile Termination Error Result Code", check_cme, dissect_cme_error_parameter },
+ { "+CMEE", "Mobile Equipment Error", check_cmee, dissect_cmee_parameter },
+ { "+CMER", "Event Reporting Activation/Deactivation", check_cmer, dissect_cmer_parameter },
+ { "+CNUM", "Subscriber Number Information", check_cnum, dissect_cnum_parameter },
{ "+COPS", "Reading Network Operator", check_cops, dissect_cops_parameter },
{ "+CPMS", "Preferred Message Storage", check_cpms, dissect_cpms_parameter },
{ "+CSIM", "Generic SIM access", check_csim, dissect_csim_parameter },
- { "+CMEE", "Mobile Equipment Error", check_cmee, dissect_cmee_parameter },
- { "+CME ERROR", "Mobile Termination Error Result Code", check_cme, dissect_cme_error_parameter },
- { "+CLIP", "Calling Line Identification Notification", check_clip, dissect_clip_parameter },
- { "+CMER", "Event Reporting Activation/Deactivation", check_cmer, dissect_cmer_parameter },
- { "+CIEV", "Indicator Events Reporting", check_ciev, dissect_ciev_parameter },
{ "+VTS", "DTMF and tone generation", check_vts, dissect_vts_parameter },
- { "+CNUM", "Subscriber Number Information", check_cnum, dissect_cnum_parameter },
{ "ERROR", "ERROR", check_only_dce_role, dissect_no_parameter },
{ "RING", "Incoming Call Indication", check_only_dce_role, dissect_no_parameter },
{ "OK", "OK", check_only_dce_role, dissect_no_parameter },