|
@@ -70,6 +70,7 @@ public sealed class DiscoveryService
|
|
|
ServerVersion = response.ServerVersion ?? string.Empty,
|
|
ServerVersion = response.ServerVersion ?? string.Empty,
|
|
|
Mac = mac ?? string.Empty,
|
|
Mac = mac ?? string.Empty,
|
|
|
Lan2Ip = response.Lan2Ip,
|
|
Lan2Ip = response.Lan2Ip,
|
|
|
|
|
+ HttpPort = response.HttpPort,
|
|
|
AuthRequired = response.AuthRequired,
|
|
AuthRequired = response.AuthRequired,
|
|
|
};
|
|
};
|
|
|
}
|
|
}
|
|
@@ -120,6 +121,9 @@ public sealed class DiscoveryService
|
|
|
[JsonPropertyName("lan2_ip")]
|
|
[JsonPropertyName("lan2_ip")]
|
|
|
public string? Lan2Ip { get; set; }
|
|
public string? Lan2Ip { get; set; }
|
|
|
|
|
|
|
|
|
|
+ [JsonPropertyName("http_port")]
|
|
|
|
|
+ public int HttpPort { get; set; }
|
|
|
|
|
+
|
|
|
[JsonPropertyName("auth_required")]
|
|
[JsonPropertyName("auth_required")]
|
|
|
public bool AuthRequired { get; set; }
|
|
public bool AuthRequired { get; set; }
|
|
|
}
|
|
}
|