Home | History | Annotate | Download | only in ServiceRegistration

Lines Matching defs:domain_name

1923         return dns_name_parse(&session->domain_name, buffer, length, offp, length);
1973 DNS_NAME_GEN_SRP(event->content.session.domain_name, dname_buf);
1980 if (event->content.session.domain_name == NULL) {
2021 dns_name_free(event.content.session.domain_name);
2026 dns_name_free(event.content.session.domain_name);
2040 dns_name_free(event.content.session.domain_name);
3342 const char *domain_name;
3381 domain_name = TXTRecordGetValuePtr(service->txt_length, service->txt_rdata, "dn", &domain_len);
3382 if (domain_name == NULL) {
3387 if (domain_len != strlen(domain->name) || memcmp(domain_name, domain->name, domain_len)) {
3393 memcpy(domain_terminated, domain_name, domain_len);
3860 srpl_domain_create_or_copy(srp_server_t *server_state, const char *domain_name)
3867 if (!strcasecmp(domain->name, domain_name)) {
3875 if (domain == NULL || (domain->name = strdup(domain_name)) == NULL) {
3876 ERROR("Unable to allocate replication structure for domain " PRI_S_SRP, domain_name);
3890 ERROR("Unexpected duplicate replication domain: " PRI_S_SRP, domain_name);
3897 srpl_domain_add(srp_server_t *server_state, const char *domain_name)
3899 srpl_domain_t *domain = srpl_domain_create_or_copy(server_state, domain_name);