mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-29 18:09:11 -04:00
16 lines
292 B
C
16 lines
292 B
C
|
|
/*
|
||
|
|
* Sync PTR records
|
||
|
|
*
|
||
|
|
* Copyright (C) 2014-2015 Red Hat ; see COPYRIGHT for license
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef SYNCPTR_H_
|
||
|
|
#define SYNCPTR_H_
|
||
|
|
|
||
|
|
#include <dns/diff.h>
|
||
|
|
isc_result_t
|
||
|
|
syncptrs(sample_instance_t *inst, dns_name_t *name, dns_rdataset_t *rdataset,
|
||
|
|
dns_diffop_t op);
|
||
|
|
|
||
|
|
#endif /* SYNCPTR_H_ */
|