blob: 82cd058a63f21ac3e8a91151e295673ce2bd1873 [file] [log] [blame]
Bernie Innocenti318ed2d2018-08-30 04:05:20 +09001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Ken Chen99c0b322019-11-20 14:24:09 +080017#pragma once
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090018
19#include <stdint.h>
20
Bernie Innocenti758005f2019-02-19 18:08:36 +090021#define MAXNS 4 // max # name servers we'll track
22#define MAXDNSRCH 6 // max # domains in search path
23#define MAXDNSRCHPATH 256 // max length of domain search paths
24#define MAXNSSAMPLES 64 // max # samples to store per server
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090025
Bernie Innocentiac18b122018-10-01 23:10:18 +090026// Per-netid configuration parameters passed from netd to the resolver
Bernie Innocenti758005f2019-02-19 18:08:36 +090027struct res_params {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +090028 uint16_t sample_validity; // sample lifetime in s
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090029 // threshold of success / total samples below which a server is considered broken
Bernie Innocenti8ad893f2018-08-31 14:09:46 +090030 uint8_t success_threshold; // 0: disable, value / 100 otherwise
31 uint8_t min_samples; // min # samples needed for statistics to be considered meaningful
32 uint8_t max_samples; // max # samples taken into account for statistics
33 int base_timeout_msec; // base query retry timeout (if 0, use RES_TIMEOUT)
waynema0161acd2019-02-18 17:47:59 +080034 int retry_count; // number of retries
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090035};