aboutsummaryrefslogtreecommitdiff
path: root/src/core/network/network_interface.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-07-25 18:31:45 -0400
committerGitHub <noreply@github.com>2022-07-25 18:31:45 -0400
commit1e67d2b59f6dfd561768db3fb9a8e0c6a16ec9f2 (patch)
tree999411f1ca76390654d1034c6d0bd2c47c3f101c /src/core/network/network_interface.h
parent1bcde9dd9879fc2677695e9283f2fe1d68c935b2 (diff)
parenta41baaa181f30229d3552caa69135be978c1ddb5 (diff)
Merge pull request #8541 from FearlessTobi/multiplayer-part1
yuzu, network: Add room service and UI configuration
Diffstat (limited to 'src/core/network/network_interface.h')
-rw-r--r--src/core/network/network_interface.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/core/network/network_interface.h b/src/core/network/network_interface.h
deleted file mode 100644
index 9b98b6b42..000000000
--- a/src/core/network/network_interface.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#pragma once
-
-#include <optional>
-#include <string>
-#include <vector>
-
-#ifdef _WIN32
-#include <winsock2.h>
-#else
-#include <netinet/in.h>
-#endif
-
-namespace Network {
-
-struct NetworkInterface {
- std::string name;
- struct in_addr ip_address;
- struct in_addr subnet_mask;
- struct in_addr gateway;
-};
-
-std::vector<NetworkInterface> GetAvailableNetworkInterfaces();
-std::optional<NetworkInterface> GetSelectedNetworkInterface();
-
-} // namespace Network