//--------------------------------------------------------------------------- // // SCSI Target Emulator PiSCSI // for Raspberry Pi // // Copyright (C) 2023 Uwe Seimet // //--------------------------------------------------------------------------- #pragma once #include #include using namespace std; struct sockaddr_in; namespace network_util { bool IsInterfaceUp(const string&); set> GetNetworkInterfaces(); bool ResolveHostName(const string&, sockaddr_in *); }