Merge pull request #9178 from jbeich/freebsd-include

network: unbreak on BSDs due to missing include
This commit is contained in:
Mai
2022-11-04 17:52:01 +00:00
committed by GitHub

View File

@ -11,6 +11,10 @@
#include "core/internal_network/network_interface.h"
#include "core/internal_network/socket_proxy.h"
#if YUZU_UNIX
#include <sys/socket.h>
#endif
namespace Network {
ProxySocket::ProxySocket(RoomNetwork& room_network_) noexcept : room_network{room_network_} {}