Searched defs:canonical (Results 1 - 7 of 7) sorted by relevance

/systemd/src/resolve/
H A Dtest-dnssec.c275 static void test_dnssec_canonicalize_one(const char *original, const char *canonical, int r) { argument
282 assert_se(streq(canonicalized, canonical));
H A Dresolve-tool.c86 const char *canonical = NULL; local
178 r = sd_bus_message_read(reply, "st", &canonical, &flags);
182 if (!streq(name, canonical))
185 canonical);
629 const char *hostname, *canonical; local
696 r = sd_bus_message_read(reply, "s", &canonical);
700 if (!streq(hostname, canonical))
701 printf("%*s(%s)\n", (int) indent, "", canonical);
H A Dresolved-dns-rr.c1176 int dns_resource_record_to_wire_format(DnsResourceRecord *rr, bool canonical) { argument
1183 .canonical_form = canonical,
1192 * canonical form as discussed in the DNSSEC RFC 4034, Section
1196 * can generate the canonical form, too, but also knows label
1199 if (rr->wire_format && rr->wire_format_canonical == canonical)
1213 rr->wire_format_canonical = canonical;
/systemd/src/basic/
H A Dmount-util.c210 _cleanup_free_ char *canonical = NULL, *parent = NULL; local
222 canonical = canonicalize_file_name(t);
223 if (!canonical)
226 t = canonical;
/systemd/src/nss-myhostname/
H A Dnss-myhostname.c57 const char *canonical = NULL; local
77 canonical = "localhost";
89 canonical = "gateway";
110 canonical = hn;
117 l = strlen(canonical);
127 memcpy(r_name, canonical, l+1);
188 const char *canonical, const char *additional,
203 assert(canonical);
215 l_canonical = strlen(canonical);
232 memcpy(r_name, canonical, l_canonica
187 fill_in_hostent( const char *canonical, const char *additional, int af, struct local_address *addresses, unsigned n_addresses, uint32_t local_address_ipv4, struct hostent *result, char *buffer, size_t buflen, int *errnop, int *h_errnop, int32_t *ttlp, char **canonp) argument
326 const char *canonical, *additional = NULL; local
406 const char *canonical = NULL, *additional = NULL; local
[all...]
/systemd/src/nss-resolve/
H A Dnss-resolve.c63 static int count_addresses(sd_bus_message *m, int af, const char **canonical) { argument
67 assert(canonical);
102 r = sd_bus_message_read(m, "s", canonical);
131 const char *canonical = NULL; local
180 c = count_addresses(reply, AF_UNSPEC, &canonical);
191 if (isempty(canonical))
192 canonical = name;
194 l = strlen(canonical);
204 memcpy(r_name, canonical, l+1);
317 const char *canonical; local
[all...]
/systemd/src/shared/
H A Ddns-domain.c701 either greater than a or smaller than c. This is how the canonical
856 int dns_name_to_wire_format(const char *domain, uint8_t *buffer, size_t len, bool canonical) { argument
881 /* Optionally, output the name in DNSSEC canonical
884 if (canonical)

Completed in 3459 milliseconds