anjana_sreekumar@infosys.com | 991c206 | 2020-01-08 11:42:57 +0530 | [diff] [blame^] | 1 | /* |
| 2 | * gtpMsgHandler.h |
| 3 | * |
| 4 | * Created on: Jun 5, 2019 |
| 5 | * Author: Anjana_Sreekumar |
| 6 | */ |
| 7 | |
| 8 | #ifndef INCLUDE_MME_APP_MSGHANDLERS_GTPMSGHANDLER_H_ |
| 9 | #define INCLUDE_MME_APP_MSGHANDLERS_GTPMSGHANDLER_H_ |
| 10 | |
| 11 | #include "msgType.h" |
| 12 | #include <msgBuffer.h> |
| 13 | |
| 14 | class GtpMsgHandler { |
| 15 | public: |
| 16 | static GtpMsgHandler* Instance(); |
| 17 | ~GtpMsgHandler(); |
| 18 | |
| 19 | void handleGtpMessage_v(cmn::utils::MsgBuffer* buffer); |
| 20 | |
| 21 | private: |
| 22 | GtpMsgHandler(); |
| 23 | |
| 24 | void handleCreateSessionResponseMsg_v(const cmn::utils::MsgBuffer* msgData_p, uint32_t ueIdx); |
| 25 | void handleModifyBearerResponseMsg_v(const cmn::utils::MsgBuffer* msgData_p, uint32_t ueIdx); |
| 26 | void handleDeleteSessionResponseMsg_v(const cmn::utils::MsgBuffer* msgData_p, uint32_t ueIdx); |
| 27 | void handleReleaseBearerResponseMsg_v(const cmn::utils::MsgBuffer* msgData_p, uint32_t ueIdx); |
| 28 | void handleDdnMsg_v(const cmn::utils::MsgBuffer* msgData_p, uint32_t ueIdx); |
| 29 | }; |
| 30 | |
| 31 | #endif /* INCLUDE_MME_APP_MSGHANDLERS_GTPMSGHANDLER_H_ */ |