Allow srv resolving to be set per remote server (#4076)

* Allow srv resolving to be set per remote server

* Remove resolve-srv as a config option
This commit is contained in:
rtm516 2023-08-26 22:51:30 +01:00 committed by GitHub
parent 90c4ea78a7
commit 48ecde0f19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 8 deletions

View file

@ -67,4 +67,11 @@ public interface RemoteServer {
*/
@NonNull
AuthType authType();
/**
* Gets if we should attempt to resolve the SRV record for this server.
*
* @return if we should attempt to resolve the SRV record for this server
*/
boolean resolveSrv();
}