anjana_sreekumar@infosys.com | 991c206 | 2020-01-08 11:42:57 +0530 | [diff] [blame^] | 1 | /* |
| 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 | |
| 19 | using namespace mme; |
| 20 | |
| 21 | int ProcedureStats::num_of_air_sent = 0; |
| 22 | int ProcedureStats::num_of_ulr_sent = 0; |
| 23 | int ProcedureStats::num_of_processed_aia = 0; |
| 24 | int ProcedureStats::num_of_processed_ula = 0; |
| 25 | int ProcedureStats::num_of_auth_req_to_ue_sent = 0; |
| 26 | int ProcedureStats::num_of_processed_auth_response = 0; |
| 27 | int ProcedureStats::num_of_sec_mode_cmd_to_ue_sent = 0; |
| 28 | int ProcedureStats::num_of_processed_sec_mode_resp = 0; |
| 29 | int ProcedureStats::num_of_esm_info_req_to_ue_sent = 0; |
| 30 | int ProcedureStats::num_of_handled_esm_info_resp = 0; |
| 31 | int ProcedureStats::num_of_cs_req_to_sgw_sent = 0; |
| 32 | int ProcedureStats::num_of_processed_cs_resp = 0; |
| 33 | int ProcedureStats::num_of_init_ctxt_req_to_ue_sent = 0; |
| 34 | int ProcedureStats::num_of_processed_init_ctxt_resp = 0; |
| 35 | int ProcedureStats::num_of_mb_req_to_sgw_sent = 0; |
| 36 | int ProcedureStats::num_of_processed_attach_cmp_from_ue = 0; |
| 37 | int ProcedureStats::num_of_processed_mb_resp = 0; |
| 38 | int ProcedureStats::num_of_attach_done = 0; |
| 39 | int ProcedureStats::num_of_del_session_req_sent = 0; |
| 40 | int ProcedureStats::num_of_purge_req_sent = 0; |
| 41 | int ProcedureStats::num_of_processed_del_session_resp = 0; |
| 42 | int ProcedureStats::num_of_processed_pur_resp = 0; |
| 43 | int ProcedureStats::num_of_detach_accept_to_ue_sent = 0; |
| 44 | int ProcedureStats::num_of_processed_detach_accept = 0; |
| 45 | int ProcedureStats::num_of_ue_ctxt_release = 0; |
| 46 | int ProcedureStats::num_of_processed_ctxt_rel_resp = 0; |
| 47 | int ProcedureStats::num_of_subscribers_attached = 0; |
| 48 | int ProcedureStats::num_of_rel_access_bearer_req_sent = 0; |
| 49 | int ProcedureStats::num_of_rel_access_bearer_resp_received = 0; |
| 50 | int ProcedureStats::num_of_s1_rel_req_received = 0; |
| 51 | int ProcedureStats::num_of_s1_rel_cmd_sent = 0; |
| 52 | int ProcedureStats::num_of_s1_rel_comp_received = 0; |
| 53 | int ProcedureStats::num_of_clr_received = 0; |
| 54 | int ProcedureStats::num_of_cla_sent = 0; |
| 55 | int ProcedureStats::num_of_detach_req_to_ue_sent = 0; |
| 56 | int ProcedureStats::num_of_detach_accept_from_ue = 0; |
| 57 | int ProcedureStats::total_num_of_subscribers = 0; |
| 58 | int ProcedureStats::num_of_subscribers_detached = 0; |
| 59 | int ProcedureStats::num_of_ddn_received = 0; |
| 60 | int ProcedureStats::num_of_service_request_received = 0; |
| 61 | int ProcedureStats::num_of_ddn_ack_sent = 0; |
| 62 | int ProcedureStats::num_of_tau_response_to_ue_sent = 0; |