summaryrefslogtreecommitdiff
path: root/source3/winbindd
AgeCommit message (Collapse)AuthorFilesLines
2009-08-16s3:winbind: WINBIND_USERINFO -> wbint_userinfoVolker Lendecke12-87/+49
2009-08-16s3:winbind: Simplify _wbint_[GU]id2SidVolker Lendecke1-16/+4
2009-08-11s3:winbindd: raise the timeout for lsa_Lookup*() calls from 10 to 35 seconds.Stefan Metzmacher2-0/+56
metze
2009-08-08s3: Fix nss info substitutionBo Yang1-3/+3
Signed-off-by: Bo Yang <boyang@samba.org>
2009-08-05s3:winbind: Convert WINBINDD_GETGROUPS to the new APIVolker Lendecke4-173/+229
2009-08-05s3:winbind: Add async wb_gettokenVolker Lendecke2-0/+223
2009-08-05s3:winbind: Convert WINBINDD_GETUSERDOMGROUPS to the new APIVolker Lendecke4-28/+130
2009-08-05s3:winbind: Add async wb_lookupusergroupsVolker Lendecke3-0/+120
2009-08-05s3:winbind: Make wcache_lookup_usergroups externally visibleVolker Lendecke2-29/+52
2009-08-05s3:winbind: Convert WINBINDD_GETSIDALIASES to the new APIVolker Lendecke4-28/+144
2009-08-05s3:winbind: Add async wb_lookupuseraliasesVolker Lendecke3-0/+122
2009-08-05s3:winbind: Make parse_sidlist take a const char *Volker Lendecke2-5/+12
2009-08-05s3:winbind: Make wcache_lookup_useraliases available publicallyVolker Lendecke2-33/+78
2009-08-05s3:winbind: Convert WINBINDD_GETPWUID to the new APIVolker Lendecke4-265/+116
2009-08-05s3:winbind: Convert WINBINDD_GETPWNAM to the new APIVolker Lendecke4-98/+151
2009-08-05s3:winbind: Convert WINBINDD_GETPWSID to the new APIVolker Lendecke4-21/+100
2009-08-05s3:winbind: Add async wb_getpwsidVolker Lendecke2-0/+229
2009-08-05s3:winbind: Make fillup_pw_field publically availableVolker Lendecke2-1/+9
2009-08-05s3:winbind: Add async wb_queryuserVolker Lendecke3-0/+153
2009-08-05s3:winbind: Make wcache_query_user externally visibleVolker Lendecke2-22/+47
2009-08-05s3:winbind: Convert WINBINDD_GID_TO_SID the new APIVolker Lendecke4-59/+95
2009-08-05s3:winbind: Add async wb_gid2sidVolker Lendecke3-0/+136
2009-08-05s3:winbind: Convert WINBINDD_UID_TO_SID the new APIVolker Lendecke4-59/+95
2009-08-05s3:winbind: Add async wb_uid2sidVolker Lendecke3-0/+137
2009-08-05s3:winbind: Convert WINBINDD_SID_TO_GID the new APIVolker Lendecke4-114/+102
2009-08-05s3:winbind: Add async wb_sid2gidVolker Lendecke3-0/+188
2009-08-05s3:winbind: Convert WINBINDD_SID_TO_UID to the new APIVolker Lendecke4-110/+101
2009-08-05s3:winbind: Add async wb_sid2uidVolker Lendecke3-0/+189
2009-08-05s3:winbind: Convert WINBINDD_LOOKUPNAME to the new APIVolker Lendecke4-61/+117
2009-08-05s3:winbind: Add async wb_lookupnameVolker Lendecke3-0/+124
2009-08-05s3:winbind: Make wcache_name_to_sid visible externallyVolker Lendecke2-42/+42
2009-08-05s3:winbind: Remove old version of WINBINDD_PINGVolker Lendecke2-7/+0
2009-08-05s3:winbind: Convert WINBINDD_LOOKUPSID to the new APIVolker Lendecke4-43/+110
2009-08-05s3:winbind: Add async wb_lookupsidVolker Lendecke3-0/+163
2009-08-05s3:winbind: Make wcache_sid_to_name externally visibleVolker Lendecke2-42/+49
2009-08-05s3:winbind: Add NDR-based parent-child communication to winbindVolker Lendecke8-0/+335
2009-08-04idmap_adex: Fix usage of talloc_stackframe().Gerald Carter1-22/+26
Pass an explicit TALLOC_CTX* to build_id_filter() and build_alias_filter() rather than relying upon the talloc_stackframe() behavior that allows a caller access to stackframe ctx for called functions.
2009-08-03Add some const to winbind_userinfoVolker Lendecke11-37/+44
2009-08-03Fix a typoVolker Lendecke1-1/+1
2009-08-02Fix some nonempty blank linesVolker Lendecke3-56/+56
2009-08-02Refactor 9b78af1f: Fix lookupname recursionVolker Lendecke7-30/+24
Pass a "flags" argument instead of the original winbind command down the name_to_sid chain. This way we are independent of the winbind commands and can take the decision at a much higher level
2009-08-01Some mods for recent coding conventionsVolker Lendecke2-3/+6
2009-08-01Place a comment correctlyVolker Lendecke1-1/+4
2009-08-01Fix indentationVolker Lendecke1-1/+1
2009-07-31Refactoring: mem_ctx is not needed as an argument to centry_sidVolker Lendecke1-21/+25
2009-07-31Rename LOOKUP_NAME_EXPLICIT to LOOKUP_NAME_NO_NSSVolker Lendecke1-1/+1
It took me a bit to understand what this flag does. I hope this is a bit clearer, at least it is to me.
2009-07-31Fix some nonempty linesVolker Lendecke2-9/+9
2009-07-31Remove a pointless variableVolker Lendecke1-3/+1
2009-07-31Provide a mem_ctx for child requestsVolker Lendecke1-0/+1
2009-07-31Slightly restructure the async winbind request calling conventionVolker Lendecke4-20/+17
The main loop now allocates the response, this has to be done everywhere