feat: update domain connect request to send empty username and access token for compatibility
This commit is contained in:
@@ -1188,10 +1188,11 @@ void OverteClient::sendDomainConnectRequest() {
|
|||||||
// 15. Username signature (QString) - empty (no keypair authentication)
|
// 15. Username signature (QString) - empty (no keypair authentication)
|
||||||
qs.writeQString("");
|
qs.writeQString("");
|
||||||
|
|
||||||
// 16. Domain username (QString) - empty for now
|
// 16. Domain username (QString) - send empty for compatibility
|
||||||
// 17. Domain access token (QString) - empty for now
|
qs.writeQString("");
|
||||||
// These are optional and only sent if domain account manager is configured
|
|
||||||
// We'll skip them for now (Overte clients only send if hasDomainAccountManager)
|
// 17. Domain access token:refreshToken (QString) - send empty for compatibility
|
||||||
|
qs.writeQString("");
|
||||||
|
|
||||||
// Append payload to packet
|
// Append payload to packet
|
||||||
if (!qs.buf.empty()) packet.write(qs.buf.data(), qs.buf.size());
|
if (!qs.buf.empty()) packet.write(qs.buf.data(), qs.buf.size());
|
||||||
|
|||||||
Reference in New Issue
Block a user