blob: d3e538c6f422a0a38ff90f2f46b1c9cbd556400a [file] [log] [blame]
anjana_sreekumar@infosys.com991c2062020-01-08 11:42:57 +05301/*
2 * Copyright (c) 2019, Infosys Ltd.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "procedureStats.h"
18
19using namespace mme;
20
21int ProcedureStats::num_of_air_sent = 0;
22int ProcedureStats::num_of_ulr_sent = 0;
23int ProcedureStats::num_of_processed_aia = 0;
24int ProcedureStats::num_of_processed_ula = 0;
25int ProcedureStats::num_of_auth_req_to_ue_sent = 0;
26int ProcedureStats::num_of_processed_auth_response = 0;
27int ProcedureStats::num_of_sec_mode_cmd_to_ue_sent = 0;
28int ProcedureStats::num_of_processed_sec_mode_resp = 0;
29int ProcedureStats::num_of_esm_info_req_to_ue_sent = 0;
30int ProcedureStats::num_of_handled_esm_info_resp = 0;
31int ProcedureStats::num_of_cs_req_to_sgw_sent = 0;
32int ProcedureStats::num_of_processed_cs_resp = 0;
33int ProcedureStats::num_of_init_ctxt_req_to_ue_sent = 0;
34int ProcedureStats::num_of_processed_init_ctxt_resp = 0;
35int ProcedureStats::num_of_mb_req_to_sgw_sent = 0;
36int ProcedureStats::num_of_processed_attach_cmp_from_ue = 0;
37int ProcedureStats::num_of_processed_mb_resp = 0;
38int ProcedureStats::num_of_attach_done = 0;
39int ProcedureStats::num_of_del_session_req_sent = 0;
40int ProcedureStats::num_of_purge_req_sent = 0;
41int ProcedureStats::num_of_processed_del_session_resp = 0;
42int ProcedureStats::num_of_processed_pur_resp = 0;
43int ProcedureStats::num_of_detach_accept_to_ue_sent = 0;
44int ProcedureStats::num_of_processed_detach_accept = 0;
45int ProcedureStats::num_of_ue_ctxt_release = 0;
46int ProcedureStats::num_of_processed_ctxt_rel_resp = 0;
47int ProcedureStats::num_of_subscribers_attached = 0;
48int ProcedureStats::num_of_rel_access_bearer_req_sent = 0;
49int ProcedureStats::num_of_rel_access_bearer_resp_received = 0;
50int ProcedureStats::num_of_s1_rel_req_received = 0;
51int ProcedureStats::num_of_s1_rel_cmd_sent = 0;
52int ProcedureStats::num_of_s1_rel_comp_received = 0;
53int ProcedureStats::num_of_clr_received = 0;
54int ProcedureStats::num_of_cla_sent = 0;
55int ProcedureStats::num_of_detach_req_to_ue_sent = 0;
56int ProcedureStats::num_of_detach_accept_from_ue = 0;
57int ProcedureStats::total_num_of_subscribers = 0;
58int ProcedureStats::num_of_subscribers_detached = 0;
59int ProcedureStats::num_of_ddn_received = 0;
60int ProcedureStats::num_of_service_request_received = 0;
61int ProcedureStats::num_of_ddn_ack_sent = 0;
62int ProcedureStats::num_of_tau_response_to_ue_sent = 0;