• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/unbound/smallapp/

Lines Matching defs:root_anchor_file

1834 write_unsigned_root(const char* root_anchor_file)
1838 out = fopen(root_anchor_file, "w");
1840 if(verb) printf("%s: %s\n", root_anchor_file, strerror(errno));
1852 root_anchor_file);
1866 write_root_anchor(const char* root_anchor_file, BIO* ds)
1877 out = fopen(root_anchor_file, "w");
1879 if(verb) printf("%s: %s\n", root_anchor_file, strerror(errno));
1884 root_anchor_file);
1898 verify_and_update_anchor(const char* root_anchor_file, BIO* xml, BIO* p7s,
1913 write_unsigned_root(root_anchor_file);
1916 write_root_anchor(root_anchor_file, ds);
1927 do_certupdate(const char* root_anchor_file, const char* root_cert_file,
1969 verify_and_update_anchor(root_anchor_file, xml, p7s, cert, p7signer);
2056 * @param root_anchor_file: filename of the root anchor.
2061 provide_builtin(const char* root_anchor_file, int* used_builtin)
2064 switch(try_read_anchor(root_anchor_file))
2067 write_builtin_anchor(root_anchor_file);
2083 add_5011_probe_root(struct ub_ctx* ctx, const char* root_anchor_file)
2086 r = ub_ctx_set_option(ctx, "auto-trust-anchor-file:", root_anchor_file);
2175 * @param root_anchor_file: filename of root key
2179 probe_date_allows_certupdate(const char* root_anchor_file)
2181 int has_pending_keys = read_if_pending_keys(root_anchor_file);
2182 int32_t last_success = read_last_success_time(root_anchor_file);
2216 fetch_root_key(const char* root_anchor_file, const char* res_conf,
2225 add_5011_probe_root(ctx, root_anchor_file);
2233 do_root_update_work(const char* root_anchor_file, const char* root_cert_file,
2245 if(!provide_builtin(root_anchor_file, &used_builtin))
2250 dnskey = fetch_root_key(root_anchor_file, res_conf,
2258 dnskey = fetch_root_key(root_anchor_file, NULL,
2277 probe_date_allows_certupdate(root_anchor_file)) || force) {
2278 if(do_certupdate(root_anchor_file, root_cert_file, urlname,
2297 const char* root_anchor_file = ROOT_ANCHOR_FILE;
2323 root_anchor_file = optarg;
2401 return do_root_update_work(root_anchor_file, root_cert_file, urlname,