summaryrefslogtreecommitdiffstats
path: root/source/libaddns/dns.h
Commit message (Collapse)AuthorAgeFilesLines
* build: fix a no previous prototype warning when building without ldap/gssapiaMichael Adam2008-08-081-6/+6
| | | | | | move prototype of dns_create_update_request() to appropriate section in dns.h Michael
* Try and fix the AIX build.Michael Adam2008-01-101-0/+1
| | | | | | The __ss_family workaround is in lib/replace/system/network.h ... Michael
* Try and fix the AIX build.Jeremy Allison2008-01-091-1/+9
| | | | Jeremy.
* Move the DNS tsig update to using struct sockaddr_storageJeremy Allison2008-01-081-4/+4
| | | | | | from struct in_addr. Still only does IPv4 updates but now it'll be easy to add IPv6 when we have time. Jeremy.
* RIP BOOL. Convert BOOL -> bool. I found a few interestingJeremy Allison2007-10-181-6/+0
| | | | | | | bugs in various places whilst doing this (places that assumed BOOL == int). I also need to fix the Samba4 pidl generation (next checkin). Jeremy.
* r24808: Fix the same problem Volker noticed.Jeremy Allison2007-10-101-1/+1
| | | | | | For some funny reason us4/gcc seems to fall over the ' Jeremy.
* r24764: Fix second TALLOC_SIZE definition. Still watching theJeremy Allison2007-10-101-1/+1
| | | | | build farm to see I didn't stuff this up... Jeremy.
* r24759: Comment out the _nonnull calls for 3.2.x, as agreed with tridge.Jeremy Allison2007-10-101-2/+22
| | | | | | Leaving the commented out code for now, in case I need to re-test some stuff. Jeremy
* r23799: updated old Franklin Street FSF addresses to new URLAndrew Tridgell2007-10-101-3/+1
|
* r22564: Move the _strict -> _zeronull functions into lib/util.cJeremy Allison2007-10-101-7/+16
| | | | | and out of talloc at tridge's request. Jeremy.
* r22542: Move over to using the _strict varients of the tallocJeremy Allison2007-10-101-7/+7
| | | | | calls. No functional changes. Looks bigger than it is :-). Jeremy.
* r21217: Just found a system that does not define in_addr_t but only structVolker Lendecke2007-10-101-2/+5
| | | | | | | in_addr. Okay, it's a SuSE 7.0, but if the fix is so simple I think we should not drop that :-) Volker
* r20427: Rename dnp_open. This conflicts with the dns_open symbol inJames Peach2007-10-101-1/+1
| | | | libSystem on Mac OS X.
* r20173: DNS update fixes:Gerald Carter2007-10-101-1/+1
| | | | | | | | | * Fix DNS updates for multi-homed hosts * Child domains often don't have an NS record in DNS so we have to fall back to looking up the the NS records for the forest root. * Fix compile warning caused by mismatched 'struct in_addr' and 'in_addr_t' parameters called to DoDNSUpdate()
* r20170: Fix secure DNS updates to work againstGerald Carter2007-10-101-5/+6
| | | | | | 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).
* r20131: get rid of a few no previous prototype warningsHerb Lewis2007-10-101-0/+3
|
* r19762: libaddns/*[ch] code fixes donated by Centeris CorporationGerald Carter2007-10-101-277/+205
| | | | | | | | | | (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
* r18784: hopefully fix the BOOL bug on AIXStefan Metzmacher2007-10-101-3/+2
| | | | metze
* r18019: Fix a C++ warnings: Don't use void * in libads/ for LDAPMessage anymore.Volker Lendecke2007-10-101-3/+3
| | | | | | | Compiled it on systems with and without LDAP, I hope it does not break the build farm too badly. If it does, I'll fix it tomorrow. Volker
* r17851: Fix a warning & attempt to fix the Tru64 buildVolker Lendecke2007-10-101-0/+24
|
* r17845: Remove a Solaris warningVolker Lendecke2007-10-101-1/+1
|
* r17805: Sorry Jerry, I could not stand the warnings... :-)Volker Lendecke2007-10-101-2/+2
|
* r17803: finally get the new libaddns code to build on Solaris 9Gerald Carter2007-10-101-0/+5
|
* r17802: trying to fix more build farm hostsGerald Carter2007-10-101-10/+31
|
* r17798: Beginnings of a standalone libaddns library released underGerald Carter2007-10-101-0/+521
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.