Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-06-28 | If the connection is down, don't try another write. | Volker Lendecke | 1 | -0/+17 | |
2009-06-28 | Add tldap_search_va | Volker Lendecke | 1 | -8/+20 | |
2009-06-28 | tldap_msg_received: Properly free the asn1_struct in case of an error | Volker Lendecke | 1 | -0/+1 | |
2009-06-27 | Move read_ldap_done after read_ldap_send | Volker Lendecke | 1 | -24/+25 | |
2009-06-27 | Convert tldap to tstream | Volker Lendecke | 1 | -11/+17 | |
2009-06-27 | Add tstream_read_packet | Volker Lendecke | 1 | -0/+139 | |
2009-06-27 | tldap: Don't fire off more than one read_ldap request during searches | Volker Lendecke | 1 | -10/+22 | |
2009-06-26 | Fix some dead code warnings from SUN Studio | Volker Lendecke | 2 | -4/+4 | |
2009-06-20 | Add tldap paged searches, together with two helper routines | Volker Lendecke | 1 | -0/+261 | |
2009-06-20 | Reorganize retrieving errors and server-sent controls | Volker Lendecke | 2 | -84/+67 | |
This attaches the data to the tldap_message instead of the tevent_req. It adds tldap_ctx_lastmsg() to retrieve the last message for the users of the sync wrappers. | |||||
2009-06-20 | Move asn1_load_nocopy() to lib/util/asn1.c | Volker Lendecke | 1 | -7/+0 | |
2009-06-20 | Move asn1_blob() to lib/util/asn1.c | Volker Lendecke | 1 | -13/+0 | |
2009-06-20 | Add tldap_supports_control | Volker Lendecke | 1 | -0/+11 | |
2009-06-20 | Add tldap_entry_has_attrvalue | Volker Lendecke | 1 | -0/+18 | |
2009-06-20 | tldap control support | Volker Lendecke | 1 | -7/+122 | |
2009-06-20 | Prepare control support | Volker Lendecke | 2 | -29/+46 | |
We will have arrays of controls passed to tldap.c. Follow a mantra from the classic book "Thinking Forth" by Leo Brodie: Favor counts over terminators :-) This makes the parameter lists to tldap pretty long, but everyone will have wrapper routines anyway, see for example tldap_search_fmt. And the OpenLDAP manpages call the non-_ext routines deprecated, probably for a reason. | |||||
2009-06-20 | Fix empty lines | Volker Lendecke | 1 | -3/+0 | |
2009-06-19 | Don't require "Modify property" perms to unjoin bug #6481) | Jim McDonough | 1 | -0/+1 | |
"net ads leave" stopped working when "modify properties" permissions were not granted (meaning you had to be allowed to disable the account that you were about to delete). Libnetapi should not delete machine accounts, as this does not happen on win32. The WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE flag really means "disable" (both in practice and docs). However, to keep the functionality in "net ads leave", we will still try to do the delete. If this fails, we try to do the disable. Additionally, it is possible in windows to not disable or delete the account, but just tell the local machine that it is no longer in the account. libnet can now do this as well. | |||||
2009-06-19 | Add a missing talloc_move() in tldap_search_recv | Volker Lendecke | 1 | -1/+1 | |
2009-06-19 | Add tldap_fetch_rootdse | Volker Lendecke | 1 | -0/+131 | |
2009-06-19 | Make tevent_req_is_ldap_error public | Volker Lendecke | 1 | -1/+1 | |
2009-06-19 | Add tldap_context_[gs]etattr | Volker Lendecke | 1 | -0/+78 | |
This adds the ability to attach extended information to a tldap_context. This will become useful once we start to do automatic reconnects for example, a callback function might want attach a pointer to credentials so that it can rebind. The initial user of this will be a cached rootdse, so that things like the ability to do paged searches can be cached. | |||||
2009-06-18 | Fix bug 4699: Remove pidfile on clean shutdown | Volker Lendecke | 1 | -8/+18 | |
2009-06-18 | Fix resource leak in lib/ldb/tools/ldbmodify.c | Slava Semushin | 1 | -0/+1 | |
Patch for bug #6389 | |||||
2009-06-18 | Fix syntax error in lib/ldb/ldb_sqlite3/base160.c | Slava Semushin | 1 | -1/+1 | |
Patch for bug #6388 | |||||
2009-06-16 | s3-netapi: Fix Bug #6451: net/libnetapi user rename using wrong access bits. | Günther Deschner | 1 | -0/+2 | |
Guenther | |||||
2009-06-16 | s3-netapi: Fix Bug #6305. Correctly prompt for a password when a username ↵ | Günther Deschner | 1 | -1/+5 | |
was given. When no callback or wrapping has managed to get a password, prompt in the netapi connection manager for a password. Guenther | |||||
2009-06-16 | s3-netapi: add NetGetJoinInformation example code. | Günther Deschner | 2 | -0/+110 | |
Guenther | |||||
2009-06-12 | Add basic tracing of tldap messages | Volker Lendecke | 1 | -0/+10 | |
2009-06-12 | Add debugging facility to tldap, analogous to tevent | Volker Lendecke | 1 | -0/+32 | |
2009-06-12 | s3: Call va_end() after all va_start()/va_copy() calls. | Andrew Kroeger | 3 | -2/+3 | |
There are error paths in S3 where va_end() is not properly called after va_start() or va_copy() have been called. These issues were noted while performing an inspection for S4 bug #6129. Thanks to Erik Hovland <erik@hovland.org> for the original bug report. | |||||
2009-06-10 | Make ctemp async. Fix the test to pass against W2K3. | Jeremy Allison | 1 | -3/+1 | |
Jeremy. | |||||
2009-06-08 | Make open_udp_socket() IPv6 clean. Trying to fix bug #6437 - Unable to join ↵ | Jeremy Allison | 1 | -10/+25 | |
IPv6-only ads domain. Avaiting feedback from submitter before backport to 3.4 and earlier. Jeremy. | |||||
2009-06-08 | Add tlda_add_mod_str | Volker Lendecke | 1 | -0/+17 | |
2009-06-08 | s3-charcnv: always talloc_free in convert_string_talloc() error path. | Günther Deschner | 1 | -2/+1 | |
Guenther | |||||
2009-06-08 | s3-charcnv: remove remaining malloc references in convert_string_talloc(). | Günther Deschner | 1 | -2/+2 | |
Guenther | |||||
2009-06-07 | Add tldap_pull_uint32 | Volker Lendecke | 1 | -0/+12 | |
2009-06-07 | Fix syntax of sending a delete request | Volker Lendecke | 1 | -1/+1 | |
2009-06-06 | Add some samba-style tldap utility functions | Volker Lendecke | 1 | -0/+351 | |
2009-06-06 | Add the early start of an async ldap library | Volker Lendecke | 1 | -0/+1835 | |
There's a lot of things this does not do yet: For example it does not parse the reply blob in the sasl bind, it does not do anything with controls yet, a lot of the ldap requests are not covered yet. But it provides a basis for me to play with a pdb_ads passdb module. | |||||
2009-06-06 | Allow AF_UNIX for open_socket_out | Volker Lendecke | 1 | -0/+4 | |
2009-06-04 | s3: map NetBSD's errno on posix open calls for symlinks | Björn Jacke | 1 | -0/+3 | |
This is well undocumented but NetBSD returns EFTYPE on O_NOFOLLOW open calls on symlinks. | |||||
2009-06-03 | s3: correct check for usleep value boundaries | Björn Jacke | 1 | -1/+1 | |
2009-05-31 | Fix some nonempty blank lines | Volker Lendecke | 1 | -52/+50 | |
2009-05-30 | Move ads flags mapping to lib/ | Volker Lendecke | 1 | -0/+150 | |
2009-05-30 | libwbclient: Add async call framework. | Kai Blin | 2 | -1111/+0 | |
2009-05-29 | Add smbldap_talloc_single_blob() | Volker Lendecke | 1 | -6/+25 | |
2009-05-29 | s3 async wbclient: Change license to LGPLv3+ | Volker Lendecke | 2 | -16/+24 | |
2009-05-29 | util: move add_gid_to_array_unique to toplevel and add add_uid_to_array_unique. | Günther Deschner | 1 | -33/+0 | |
Guenther | |||||
2009-05-28 | Make sid_binstring & friends take a talloc context | Volker Lendecke | 3 | -12/+15 | |