summaryrefslogtreecommitdiff
path: root/source3/libaddns/dnsgss.c
AgeCommit message (Collapse)AuthorFilesLines
2009-09-02Do not redefine struprMatt Kraai1-0/+2
Signed-off-by: Günther Deschner <gd@samba.org>
2007-10-10r25134: Fix Bug #4968 and make dns updates work with heimdal as well (again,Günther Deschner1-21/+3
gss_import_name() needs to follow the same logic as in the LDAP sasl wrapping (see -r25133). Tested with MIT 1.2.7, 1.3.6, 1.4.3, 1.5.1, 1.6.1 and Heimdal 0.7.2, 1.0, 1.0.1. Guenther (This used to be commit 913fb138aa90a6627ee49b2e92d1bbc73e11f9ea)
2007-10-10r23799: updated old Franklin Street FSF addresses to new URLAndrew Tridgell1-3/+1
(This used to be commit 43cd589773148fe3d243892768ce187604dd0c33)
2007-10-10r21851: Obvious typos...Volker Lendecke1-2/+2
(This used to be commit ff886436b739bbb5c00a67de970841205a3f447c)
2007-10-10r21848: add a comment about gss_import_name() and when to free the krb5 ↵Gerald Carter1-1/+9
principal data (This used to be commit 54a114fa7569315a8ad391689ebf5d68ef4a62d4)
2007-10-10r20427: Rename dnp_open. This conflicts with the dns_open symbol inJames Peach1-1/+1
libSystem on Mac OS X. (This used to be commit 585ee7f31d2fb169e9dc37fd786faa8049be5e52)
2007-10-10r20170: Fix secure DNS updates to work againstGerald Carter1-8/+23
Wnidows 2000 DNS which expects the TKEY payload to be in the answer section and not in the additional set of records (like Windows 2003 and the RFC). (This used to be commit a3b6734fdad5fd92dbec075ebcd8d7044aac45c2)
2007-10-10r19977: * Fix a crash in the secure DNS update code. Don't freeGerald Carter1-3/+4
the host_principal memory while it is still being referenced by the gss code. (This used to be commit 7a5a12e892171f0e1b6355f84ee920307834c81f)
2007-10-10r19762: libaddns/*[ch] code fixes donated by Centeris CorporationGerald Carter1-423/+197
(http://www.centeris.com/) under my copyright. * Rework error reporting to use DNS_ERROR instead of int32 * Convert memory allocation to use talloc() * Generalize the DNS request/response packet marshalling * Fix the secure update requests (This used to be commit c78798333616c3f823514df0f58da2eb3a30a988)
2007-10-10r17805: Sorry Jerry, I could not stand the warnings... :-)Volker Lendecke1-3/+3
(This used to be commit f5fcafd77e8a749659ef90296402c5130f45419b)
2007-10-10r17802: trying to fix more build farm hostsGerald Carter1-6/+10
(This used to be commit d16fea385aba11b6dad141298694320c803bf3eb)
2007-10-10r17798: Beginnings of a standalone libaddns library released underGerald Carter1-0/+550
the LGPL. Original code by Krishna Ganugapati <krishnag@centeris.com>. Additional work by me. It's still got some warts, but non-secure updates do currently work. There are at least four things left to really clean up. 1. Change the memory management to use talloc() rather than malloc() and cleanup the leaks. 2. Fix the error code reporting (see initial changes to dnserr.h) 3. Fix the secure updates 4. Define a public interface in addns.h 5. Move the code in libads/dns.c into the libaddns/ directory (and under the LGPL). A few notes: * Enable the new code by compiling with --with-dnsupdate * Also adds the command 'net ads dns register' * Requires -luuid (included in the e2fsprogs-devel package). * Has only been tested on Linux platforms so there may be portability issues. (This used to be commit 36f04674aeefd93c5a0408b8967dcd48b86fdbc1)