mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
a8c737fc93
This new option allows DNS names to be unregistered and removes all IP entries for a given name in the specified AD server. Signed-off-by: Shyamsunder Rathi <shyam.rathi@nutanic.com> Reviewed-by: Richard SHarpe <rsharpe@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org> Autobuild-User(master): Richard Sharpe <sharpe@samba.org> Autobuild-Date(master): Mon Jun 27 20:43:26 CEST 2016 on sn-devel-144
44 lines
1.5 KiB
C
44 lines
1.5 KiB
C
/*
|
|
Samba Unix/Linux Dynamic DNS Update
|
|
net ads commands
|
|
|
|
Copyright (C) Krishna Ganugapati (krishnag@centeris.com) 2006
|
|
Copyright (C) Gerald Carter 2006
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
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/>.
|
|
*/
|
|
|
|
/* flags for DoDNSUpdate */
|
|
|
|
#define DNS_UPDATE_SIGNED 0x01
|
|
#define DNS_UPDATE_SIGNED_SUFFICIENT 0x02
|
|
#define DNS_UPDATE_UNSIGNED 0x04
|
|
#define DNS_UPDATE_UNSIGNED_SUFFICIENT 0x08
|
|
#define DNS_UPDATE_PROBE 0x10
|
|
#define DNS_UPDATE_PROBE_SUFFICIENT 0x20
|
|
|
|
#if defined(WITH_DNS_UPDATES)
|
|
|
|
#include "../lib/addns/dns.h"
|
|
|
|
DNS_ERROR DoDNSUpdate(char *pszServerName,
|
|
const char *pszDomainName, const char *pszHostName,
|
|
const struct sockaddr_storage *sslist,
|
|
size_t num_addrs,
|
|
uint32_t flags, bool remove_host);
|
|
|
|
DNS_ERROR do_gethostbyname(const char *server, const char *host);
|
|
|
|
#endif /* defined(WITH_DNS_UPDATES) */
|