mirror of
https://github.com/samba-team/samba.git
synced 2025-01-17 02:05:21 +03:00
bfbe5a50c6
(This used to be commit d16fea385aba11b6dad141298694320c803bf3eb)
57 lines
1.7 KiB
C
57 lines
1.7 KiB
C
/*
|
|
Linux DNS client library implementation
|
|
|
|
Copyright (C) 2006 Krishna Ganugapati <krishnag@centeris.com>
|
|
Copyright (C) 2006 Gerald Carter <jerry@samba.org>
|
|
|
|
** NOTE! The following LGPL license applies to the libaddns
|
|
** library. This does NOT imply that all of Samba is released
|
|
** under the LGPL
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
This library 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
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301 USA
|
|
*/
|
|
|
|
#include "dns.h"
|
|
|
|
|
|
#ifdef HAVE_GSSAPI_SUPPORT
|
|
|
|
/*********************************************************************
|
|
*********************************************************************/
|
|
|
|
int32 DNSStdValidateAndGetTSIGRecord( gss_ctx_id_t * gss_context,
|
|
DNS_RESPONSE * pDNSResponse,
|
|
DNS_RR_RECORD ** ppDNSTSIGRecord )
|
|
{
|
|
int32 dwError = 0;
|
|
|
|
return dwError;
|
|
}
|
|
|
|
/*********************************************************************
|
|
*********************************************************************/
|
|
|
|
int32 DNSUpdateValidateAndGetTSIGRecord( gss_ctx_id_t * gss_context,
|
|
DNS_UPDATE_RESPONSE * pDNSUpdateResponse,
|
|
DNS_RR_RECORD ** ppDNSTSIGRecord )
|
|
{
|
|
int32 dwError = 0;
|
|
|
|
return dwError;
|
|
}
|
|
|
|
#endif
|