blob: ce31f1ade1b1d81f765000b4a23dee6aebf6ec7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package android.net;
parcelable ResolverParamsParcel {
int netId;
int sampleValiditySeconds;
int successThreshold;
int minSamples;
int maxSamples;
int baseTimeoutMsec;
int retryCount;
@utf8InCpp String[] servers;
@utf8InCpp String[] domains;
@utf8InCpp String tlsName;
@utf8InCpp String[] tlsServers;
@utf8InCpp String[] tlsFingerprints = {};
@utf8InCpp String caCertificate = "";
int tlsConnectTimeoutMs = 0;
}
|