/* * Copyright (c) 2025 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef NET_EAP_HANDLER_H #define NET_EAP_HANDLER_H #include #include #include "eap_data.h" #include "inet_register_eap_callback.h" #include "inet_eap_postback_callback.h" #ifdef NET_EXTENSIBLE_AUTHENTICATION #include "eth_eap_profile.h" #include "eap_hdi_wpa_manager.h" #endif namespace OHOS { namespace NetManagerStandard { class NetEapHandler : public std::enable_shared_from_this { public: NetEapHandler(); ~NetEapHandler() = default; static NetEapHandler &GetInstance(); int32_t RegisterCustomEapCallback(const NetType netType, const sptr &callback); int32_t UnRegisterCustomEapCallback(const NetType netType, const sptr &callback); int32_t NotifyWpaEapInterceptInfo(const NetType netType, const sptr &eapData); int32_t RegCustomEapHandler(NetType netType, const std::string ®Cmd, const sptr &postBackCb); int32_t ReplyCustomEapData(int result, const sptr &eapData); #ifdef NET_EXTENSIBLE_AUTHENTICATION int32_t StartEthEap(int32_t netId, const EthEapProfile& profile); int32_t LogOffEthEap(int32_t netId); #endif private: void SetPostbackCallback(const sptr &postbackCallback); sptr GetPostbackCallback(); #ifdef NET_EXTENSIBLE_AUTHENTICATION void GetIfaceNameFromNetId(int32_t netId); #endif private: std::map nTMapMsgId_; std::map> regEapCallBack_; sptr postbackCallback_; std::mutex callbackMutex_; std::mutex mutex_; #ifdef NET_EXTENSIBLE_AUTHENTICATION std::shared_ptr eapHdiWpaManager_; std::string ethEapIfName_; #endif }; } // namespace NetManagerStandard } // namespace OHOS #endif // NET_EAP_HANDLER_H