Fix the inability to set hostname with the flag in daemon mode (#1339)

Pass the hostname set in the flag into the protocol message when running in daemon mode.
This commit is contained in:
Bethuel Mmbaga
2023-11-29 17:01:27 +03:00
committed by GitHub
parent b6211ad020
commit 7a46a63a14
5 changed files with 160 additions and 124 deletions

View File

@ -52,6 +52,8 @@ message LoginRequest {
bytes customDNSAddress = 7;
bool isLinuxDesktopClient = 8;
string hostname = 9;
}
message LoginResponse {
@ -63,6 +65,7 @@ message LoginResponse {
message WaitSSOLoginRequest {
string userCode = 1;
string hostname = 2;
}
message WaitSSOLoginResponse {}