summaryrefslogtreecommitdiff
path: root/nsswitch/libwbclient
AgeCommit message (Collapse)AuthorFilesLines
2010-04-19libwbclient: Make wbcGetSidAliases not use tallocVolker Lendecke1-8/+7
2010-04-19libwbclient: Test wbcGetSidAliasesVolker Lendecke1-0/+37
2010-04-19libwbclient: Simplify test_wbc_domain_info a bitVolker Lendecke1-5/+3
2010-04-19libwbclient: Fix some pointless macro callsVolker Lendecke1-3/+3
2010-04-19libwbclient: Take -21 into account in length guessingVolker Lendecke1-4/+4
2010-04-19libwbclient: Fix some pointless macro callsVolker Lendecke1-4/+4
2010-04-19libwbclient: Make wbcLookupRids not use tallocVolker Lendecke1-21/+16
2010-04-19libwbclient: Add wbcAllocateStringArrayVolker Lendecke2-0/+17
2010-04-19libwbclient: Test wbcLookupRidsVolker Lendecke1-0/+29
2010-04-19libwbclient: Make wbcLookupSid not use tallocVolker Lendecke1-51/+35
2010-04-19libwbclient: Add wbcStrDupVolker Lendecke2-0/+16
2010-04-19libwbclient: Convert wbcSidToString to not use tallocVolker Lendecke1-22/+22
2010-04-19libwbclient: Make copy_group_entry not use tallocVolker Lendecke1-24/+44
2010-04-19libwbclient: Make copy_passwd_entry not use tallocVolker Lendecke1-28/+41
2010-04-19libwbclient: Make wbcGuidToString not use tallocVolker Lendecke1-20/+16
2010-04-19libwbclient: Make wbcLibraryDetails not use tallocVolker Lendecke1-1/+3
2010-04-19libwbclient: Add wbcAllocateMemory()Volker Lendecke2-2/+54
This prepares for removing libwbclient's talloc dependency. It is a non-hierarchical "talloc-lite" that has destructors. It is necessary because we have the catch-call wbcFreeMemory call. Individual wbcFreeXXX calls for the different structures wbclient returns would have made this easier, but wbcFreeMemory is the API we have to live with.
2010-04-13libwbclient: Re-Fix a bug that was fixed with e5741e27c4cVolker Lendecke4-29/+56
> r21878: Fix a bug with smbd serving a windows terminal server: If winbind > decides smbd to be idle it might happen that smbd needs to do a winbind > operation (for example sid2name) as non-root. This then fails to get the > privileged pipe. When later on on the same connection another authentication > request comes in, we try to do the CRAP auth via the non-privileged pipe. > > This adds a winbindd_priv_request_response() request that kills the existing > winbind pipe connection if it's not privileged. The fix for this was lost during the conversion to libwbclient. Thanks to Ira Cooper <samba@ira.wakeful.net> for pointing this out! Volker
2010-04-13libwbclient: Remove a pointless variableVolker Lendecke1-3/+1
2010-04-10libwbclient: Fix a memleak in wbcGetDisplayNameVolker Lendecke1-0/+1
2010-04-10libwbclient: Ensure correct 0-termination in wbcGetSidAliasesVolker Lendecke1-0/+1
2010-04-09libwbclient: Fix some memleaks in the testsVolker Lendecke1-0/+7
2010-04-06s4-waf: removed the AUTOGENERATED markersAndrew Tridgell1-4/+0
we won't be using the mk -> wscript generator again
2010-04-06s4-waf: mark the wscript files as python so vim/emacs knows how to highlight ↵Andrew Tridgell1-0/+2
them
2010-04-06build: commit all the waf build files in the treeAndrew Tridgell1-0/+15
2010-04-04libwbclient: Fix a memleak in wbcListTrustsVolker Lendecke1-8/+3
2010-04-04libwbclient: Fix memleaks in testsVolker Lendecke1-0/+10
2010-04-04libwbclient: Fix a memleak in wbcListTrustsVolker Lendecke1-0/+3
2010-04-04libwbclient: Streamline result processing of wbcCredentialCache()Volker Lendecke1-4/+2
2010-04-04libwbclient: Fix a memleak in wbcCredentialCacheVolker Lendecke1-0/+1
2010-04-03libwbclient: Both talloc_free and wbcFreeMemory deal with NULLVolker Lendecke2-18/+6
This is in line with the ANSI C standard definition of free(NULL)
2010-03-26libutil: moved the networking defines to util_net.hAndrew Tridgell1-0/+1
These were causing thousands of warnings on solaris8
2010-02-13libwbclient: Fix s4 build failure by fixing up includes.Kai Blin6-3/+4
Sorry about this, folks.
2010-02-13libwbclient: Separate out the async functionsKai Blin9-1763/+2066
2010-02-11libwbclient: Test wbcLookupName async functionsKai Blin1-0/+79
2010-02-11libwbclient: Implement wbcLookupName_send/recvKai Blin2-0/+137
2010-02-11libwbclient: Implement wbcAuthenticateUserEx_send/recvKai Blin2-0/+280
2010-02-11libwbclient: Implement wbcLookupSid_send/recvKai Blin2-0/+140
2010-02-11libwbclient: Implement wbcGidToSid_send/recvKai Blin2-0/+117
2010-02-11libwbclient: Implement wbcSidToGid_send/recvKai Blin2-0/+107
2010-02-11libwbclient: Implement wbcUidToSid_send/recvKai Blin2-0/+116
2010-02-11libwbclient: Implement wbcSidToUid_send/recvKai Blin2-0/+108
2010-02-11libwbclient: Add wbcInterfaceDetails_send/recvKai Blin3-5/+231
2010-02-11libwbclient: Add wbcDomainInfo_send/recv callsKai Blin2-1/+155
2010-02-11libwbclient: Add wbcDomainName_send/recv callKai Blin2-0/+101
2010-02-11libwbclient: Add wbcNetbiosName_send/recv callsKai Blin2-0/+102
2010-02-11libwbclient: Add async wbcInfo_send()/wbcInfo_recv() callsKai Blin2-0/+106
2010-02-11libwbclient: add wbcInterfaceVersion send/recv callsKai Blin2-0/+98
2010-02-11libwbclient: torture-test wbcPing async functions.Kai Blin1-0/+20
2010-02-11libwbclient: Add async wbcPing_send/_recvKai Blin2-1/+87