summaryrefslogtreecommitdiffstats
path: root/src/core/internal_network/network_interface.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-08-14Revert "Silence nifm spam"FearlessTobi1-1/+8
This reverts commit 4da4ecb1ff79798fe245a0c6c483405f998cd093.
2023-04-22Silence nifm spamKelebek11-1/+1
2022-11-23general: fix compile for Apple ClangLiam1-0/+1
2022-09-20Address some review commentsFearlessTobi1-2/+2
2022-09-10yuzu: Multiple room UI improvementsgerman771-0/+10
2022-07-25yuzu: Add ui files for multiplayer roomsFearlessTobi1-1/+1
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2021-08-27network_interface: Cleanup codeMorph1-76/+83
2021-08-27network_interface: Replace default return value with std::nulloptMorph1-6/+6
2021-08-16network_interface: correct formattingSönke Holz1-1/+1
2021-08-16network_interface: fix mingw-w64 buildspholz1-1/+1
2021-08-16network: retrieve subnet mask and gateway infoSönke Holz1-5/+98
2021-08-13network: don't use reinterpret_cast in GetAvailableNetworkInterfacesspholz1-7/+4
2021-08-13network: use Common::BitCast instead of std::bit_castSönke Holz1-2/+3
2021-08-13network: narrow down scope of "result" in win32 code forSönke Holz1-4/+5
GetAvailableNetworkInterfaces
2021-08-13network: use explicit bool conversions in GetAvailableNetworkInterfacesSönke Holz1-1/+1
2021-08-12network: correct formatting in network.cpp and network_interface.cppSönke Holz1-5/+3
2021-08-12configuration: add option to select network interfacespholz1-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.