feat(client): implement realm enum callback

This commit is contained in:
fallenoak 2023-02-11 20:46:32 -06:00
parent 22bfe894d2
commit cd9fe7aee5
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
9 changed files with 147 additions and 1 deletions

View file

@ -527,6 +527,10 @@ WC_SEND_RESULT WowConnection::SendRaw(uint8_t* data, int32_t len, bool a4) {
return WC_SEND_ERROR;
}
void WowConnection::SetEncryptionType(WC_ENCRYPT_TYPE encryptType) {
// TODO
}
void WowConnection::SetState(WOW_CONN_STATE state) {
WOW_CONN_STATE oldState = this->m_connState;
this->m_connState = state;