Lines Matching defs:notify_source
236 peer->notify_source = NULL;
304 if (p->notify_source != NULL)
305 isc_mem_put(mem, p->notify_source, sizeof(*p->notify_source));
677 const isc_sockaddr_t *notify_source)
681 if (peer->notify_source != NULL) {
682 isc_mem_put(peer->mem, peer->notify_source,
683 sizeof(*peer->notify_source));
684 peer->notify_source = NULL;
686 if (notify_source != NULL) {
687 peer->notify_source = isc_mem_get(peer->mem,
688 sizeof(*peer->notify_source));
689 if (peer->notify_source == NULL)
692 *peer->notify_source = *notify_source;
698 dns_peer_getnotifysource(dns_peer_t *peer, isc_sockaddr_t *notify_source) {
700 REQUIRE(notify_source != NULL);
702 if (peer->notify_source == NULL)
704 *notify_source = *peer->notify_source;