/*** Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: INetSrvInterfaces.hpp Date: 2022-12-11 Author: Reece ***/ #pragma once namespace Aurora::IO::Net { struct INetSrvInterfaces { virtual const AuString & GetHostname() = 0; virtual void ResetAdapterCache() = 0; virtual AuList> GetAdapters() = 0; }; };