summaryrefslogtreecommitdiffstats
path: root/src/core/network/network_interface.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* network: use Common::BitCast instead of std::bit_castSönke Holz2021-08-131-2/+3
|
* network: narrow down scope of "result" in win32 code forSönke Holz2021-08-131-4/+5
| | | | GetAvailableNetworkInterfaces
* network: use explicit bool conversions in GetAvailableNetworkInterfacesSönke Holz2021-08-131-1/+1
|
* network: correct formatting in network.cpp and network_interface.cppSönke Holz2021-08-121-5/+3
|
* configuration: add option to select network interfacespholz2021-08-121-0/+113
This commit renames the "Services" tab to "Network" and adds a combobox that allows the user to select the network interface that yuzu should use. This new setting is now used to get the local IP address in Network::GetHostIPv4Address. This prevents yuzu from selecting the wrong network interface and thus using the wrong IP address. The return type of Network::GetHostIPv4Adress has also been changed.