summaryrefslogblamecommitdiffstats
path: root/src/core/network/network_interface.h
blob: 9b98b6b4204d2db80bdd1c606edce109184be123 (plain) (tree)
1
2
3
4
5
6

                                                               


            
                   













                              

                               


                                                              
                                                              

                      
// 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