feat(net): handle connect callback in client connection

This commit is contained in:
fallenoak 2023-04-04 00:28:12 -05:00
parent 1b27761d0c
commit 55a3bacbd0
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 13 additions and 0 deletions

View file

@ -16,6 +16,9 @@ class ClientConnection : public RealmConnection {
int32_t m_errorCode = 0;
void (*m_cleanup)() = nullptr;
// Virtual member functions
virtual int32_t HandleConnect();
// Member functions
ClientConnection(RealmResponse* realmResponse)
: RealmConnection(realmResponse)