summaryrefslogtreecommitdiffstats
path: root/src/core/network/network_interface.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* network_interface: Cleanup codeMorph2021-08-271-76/+83
|
* network_interface: Replace default return value with std::nulloptMorph2021-08-271-6/+6
|
* network_interface: correct formattingSönke Holz2021-08-161-1/+1
|
* network_interface: fix mingw-w64 buildspholz2021-08-161-1/+1
|
* network: retrieve subnet mask and gateway infoSönke Holz2021-08-161-5/+98
|
* network: don't use reinterpret_cast in GetAvailableNetworkInterfacesspholz2021-08-131-7/+4
|
* 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.