class HTTP::Cache::Headers

def http_date_to_ttl(t_str)

def http_date_to_ttl(t_str)
  ttl = to_time_or_epoch(t_str) - Time.now
  ttl < 0 ? 0 : ttl
end