/*** Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: ISocketServerDriver.hpp Date: 2022-8-22 Author: Reece ***/ #pragma once namespace Aurora::IO::Net { AUKN_INTERFACE(ISocketServerDriver, AUI_METHOD(void, OnBind, ()), AUI_METHOD(void, OnError, (const AuSPtr &, pSocket, const NetError &, error)), AUI_METHOD(void, OnFatalErrorReported, (const NetError &, error)), AUI_METHOD(void, OnFinalize, ()) ); }