Lines Matching refs:notify_source
238 peer->notify_source = NULL;
596 const isc_sockaddr_t *notify_source)
600 if (peer->notify_source != NULL) {
601 isc_mem_put(peer->mem, peer->notify_source,
602 sizeof(*peer->notify_source));
603 peer->notify_source = NULL;
605 if (notify_source != NULL) {
606 peer->notify_source = isc_mem_get(peer->mem,
607 sizeof(*peer->notify_source));
608 if (peer->notify_source == NULL)
611 *peer->notify_source = *notify_source;
617 dns_peer_getnotifysource(dns_peer_t *peer, isc_sockaddr_t *notify_source) {
619 REQUIRE(notify_source != NULL);
621 if (peer->notify_source == NULL)
623 *notify_source = *peer->notify_source;