1 /* 2 * Copyright (c) 2024 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #include "i_dsoftbus_adapter.h" 17 18 #include "softbus_bus_center.h" 19 20 #include "devicestatus_define.h" 21 22 #undef LOG_TAG 23 #define LOG_TAG "IDSoftbusAdapter" 24 25 namespace OHOS { 26 namespace Msdp { 27 namespace DeviceStatus { 28 GetLocalNetworkId()29std::string IDSoftbusAdapter::GetLocalNetworkId() 30 { 31 NodeBasicInfo localNode; 32 33 int32_t ret = ::GetLocalNodeDeviceInfo(FI_PKG_NAME, &localNode); 34 if (ret != RET_OK) { 35 FI_HILOGE("DSOFTBUS::GetLocalNodeDeviceInfo fail, error:%{public}d", ret); 36 return {}; 37 } 38 return localNode.networkId; 39 } 40 } // namespace DeviceStatus 41 } // namespace Msdp 42 } // namespace OHOS 43