Browse Source
Merge pull request #10075 from Kelebek1/silence_nifm_spam
Silence network spam
pull/15/merge
bunnei
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
5 additions and
5 deletions
-
src/core/hle/service/nifm/nifm.cpp
-
src/core/internal_network/network.cpp
-
src/core/internal_network/network_interface.cpp
|
|
|
@ -218,7 +218,7 @@ public: |
|
|
|
|
|
|
|
private: |
|
|
|
void Submit(HLERequestContext& ctx) { |
|
|
|
LOG_WARNING(Service_NIFM, "(STUBBED) called"); |
|
|
|
LOG_DEBUG(Service_NIFM, "(STUBBED) called"); |
|
|
|
|
|
|
|
if (state == RequestState::NotSubmitted) { |
|
|
|
UpdateState(RequestState::OnHold); |
|
|
|
@ -229,7 +229,7 @@ private: |
|
|
|
} |
|
|
|
|
|
|
|
void GetRequestState(HLERequestContext& ctx) { |
|
|
|
LOG_WARNING(Service_NIFM, "(STUBBED) called"); |
|
|
|
LOG_DEBUG(Service_NIFM, "(STUBBED) called"); |
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3}; |
|
|
|
rb.Push(ResultSuccess); |
|
|
|
@ -237,7 +237,7 @@ private: |
|
|
|
} |
|
|
|
|
|
|
|
void GetResult(HLERequestContext& ctx) { |
|
|
|
LOG_WARNING(Service_NIFM, "(STUBBED) called"); |
|
|
|
LOG_DEBUG(Service_NIFM, "(STUBBED) called"); |
|
|
|
|
|
|
|
const auto result = [this] { |
|
|
|
const auto has_connection = Network::GetHostIPv4Address().has_value(); |
|
|
|
|
|
|
|
@ -356,7 +356,7 @@ NetworkInstance::~NetworkInstance() { |
|
|
|
std::optional<IPv4Address> GetHostIPv4Address() { |
|
|
|
const auto network_interface = Network::GetSelectedNetworkInterface(); |
|
|
|
if (!network_interface.has_value()) { |
|
|
|
LOG_ERROR(Network, "GetSelectedNetworkInterface returned no interface"); |
|
|
|
LOG_DEBUG(Network, "GetSelectedNetworkInterface returned no interface"); |
|
|
|
return {}; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -200,7 +200,7 @@ std::optional<NetworkInterface> GetSelectedNetworkInterface() { |
|
|
|
}); |
|
|
|
|
|
|
|
if (res == network_interfaces.end()) { |
|
|
|
LOG_ERROR(Network, "Couldn't find selected interface \"{}\"", selected_network_interface); |
|
|
|
LOG_DEBUG(Network, "Couldn't find selected interface \"{}\"", selected_network_interface); |
|
|
|
return std::nullopt; |
|
|
|
} |
|
|
|
|
|
|
|
|