Lines Matching full:retry
147 uint32_t retry; member
275 #define XFRD_LOWERBOUND_RETRY 1 /* seconds, smallest retry timeout */
303 * return retry period
307 within_retry_bounds(xfrd_zone_type* zone, time_t retry) in within_retry_bounds() argument
309 return (time_t)zone->zone_options->pattern->max_retry_time < retry in within_retry_bounds()
311 : (time_t)zone->zone_options->pattern->min_retry_time > retry in within_retry_bounds()
313 : XFRD_LOWERBOUND_RETRY > retry in within_retry_bounds()
314 ? XFRD_LOWERBOUND_RETRY : retry; in within_retry_bounds()
318 * return the zone's retry period (from the on disk stored SOA)
324 return within_retry_bounds(zone, ntohl(zone->soa_disk.retry)); in bound_soa_disk_retry()
400 * if too many rounds of requests, sets timer for next retry.