dp_dyndns.h revision 5a4239490c7fb7d732180a9d40f27f0247c56631
/*
SSSD
Authors:
Jakub Hrozek <jhrozek@redhat.com>
Copyright (C) 2013 Red Hat
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef DP_DYNDNS_H_
#define DP_DYNDNS_H_
/* dynamic dns helpers */
struct sss_iface_addr;
typedef void (*nsupdate_timer_fn_t)(void *pvt);
struct be_nsupdate_ctx {
bool timer_in_progress;
struct tevent_timer *refresh_timer;
void *timer_pvt;
};
enum dp_dyndns_opts {
DP_OPT_DYNDNS /* attrs counter */
};
#define DYNDNS_REMOVE_A 0x1
#define DYNDNS_REMOVE_AAAA 0x2
errno_t be_nsupdate_check(void);
void *timer_pvt,
struct be_nsupdate_ctx **_ctx);
struct be_nsupdate_ctx *ctx);
struct sss_iface_addr **_addrlist);
struct sss_iface_addr *
struct sockaddr_storage *ss);
struct sss_iface_addr *ifaddr_list,
char ***_straddrs);
const char *zone, const char *servername,
char **_update_msg);
/* Returns:
* * ERR_OK - on success
* * ERR_DYNDNS_FAILED - if nsupdate fails for any reason
* * ERR_DYNDNS_TIMEOUT - if the update times out. child_status
* is ETIMEDOUT in this case
*/
struct tevent_context *ev,
char *nsupdate_msg);
struct tevent_context *ev,
struct be_resolv_ctx *be_res,
const char *hostname);
char ***_addrlist);
#endif /* DP_DYNDNS_H_ */