Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-12-14 | s3:smbd/server: maintain the list of child processes under smbd_parent_context | Stefan Metzmacher | 1 | -6/+0 | |
metze | |||||
2011-12-13 | s3:lib/dummyparam: remove unused conn_snum_used() dummy | Stefan Metzmacher | 1 | -1/+0 | |
metze | |||||
2011-12-13 | s3:param: don't reference conn_snum_used directly in load_usershare_shares() | Stefan Metzmacher | 1 | -1/+2 | |
This uses the same logic as lp_killunused(). metze | |||||
2011-12-12 | s3: Remove a bunch of calls to procid_self() | Volker Lendecke | 3 | -5/+2 | |
All callers to messaging_[re]init only used procid_self() | |||||
2011-12-12 | s3:smbd: make struct pending_message_list private | Stefan Metzmacher | 1 | -14/+0 | |
metze | |||||
2011-12-12 | s3:smbd: remember the smbd_server_connection on pending_message_list | Stefan Metzmacher | 1 | -0/+1 | |
metze | |||||
2011-12-12 | vfs: Make function pointer names consistent. They all end in _fn | Richard Sharpe | 2 | -224/+225 | |
Autobuild-User: Richard Sharpe <sharpe@samba.org> Autobuild-Date: Mon Dec 12 04:58:40 CET 2011 on sn-devel-104 | |||||
2011-12-03 | Revert making public of the samba-module library. | Jelmer Vernooij | 1 | -1/+1 | |
This library was tiny - containing just two public functions than were themselves trivial. The amount of overhead this causes isn't really worth the benefits of sharing the code with other projects like OpenChange. In addition, this code isn't really generically useful anyway, as it can only load from the module path set for Samba at configure time. Adding a new library was breaking the API/ABI anyway, so OpenChange had to be updated to cope with the new situation one way or another. I've added a simpler (compatible) routine for loading modules to OpenChange, which is less than 100 lines of code. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Dec 3 08:36:33 CET 2011 on sn-devel-104 | |||||
2011-12-02 | s3: Use autogenerated open_files.idl | Volker Lendecke | 1 | -69/+0 | |
2011-12-01 | After a discussion with Volker, sdd a backup_intent state to the client struct. | Jeremy Allison | 1 | -0/+1 | |
This causes the backup_intent flags to be added to findfirst/findnext and ntcreate/nttrans_create calls. cli_set_backup_intent() sets the flag and returns the old value of its state. | |||||
2011-11-30 | s3-ctdb: Make use of CTDB_CONTROL_CHECK_SRVIDS | Volker Lendecke | 1 | -0/+4 | |
This should be a lot quicker than PROCESS_EXISTS followed by looking at serverid.tdb Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Nov 30 12:47:27 CET 2011 on sn-devel-104 | |||||
2011-11-25 | s3: Add some const | Volker Lendecke | 1 | -2/+2 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Fri Nov 25 10:21:07 CET 2011 on sn-devel-104 | |||||
2011-11-24 | s3:libsmb: implement cli_state based functions on top of ↵ | Stefan Metzmacher | 1 | -60/+2 | |
smbXcli_conn/smbXcli_req metze | |||||
2011-11-24 | s3:smb2cli: make use of smbXcli_session and setup the session key for SMB2 ↵ | Stefan Metzmacher | 1 | -1/+2 | |
signing metze | |||||
2011-11-24 | s3:smb2cli: implement smb2cli_negprot() on top of smbXcli_negprot() | Stefan Metzmacher | 1 | -12/+0 | |
metze | |||||
2011-11-24 | s3:smb2cli: replace smb2cli_base.c code with the more generic smbXcli_base.c ↵ | Stefan Metzmacher | 1 | -1/+4 | |
code metze | |||||
2011-11-23 | s3: Move server_info_struct to nmbd | Volker Lendecke | 2 | -9/+9 | |
That's the only place where it's used. | |||||
2011-11-23 | s3: Replace delete_token_list by an array | Volker Lendecke | 1 | -3/+3 | |
This will make it easier to convert locking.tdb to IDL, and I don't think there will be enough entries to justify a linked list over an array. Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Nov 23 09:02:12 CET 2011 on sn-devel-104 | |||||
2011-11-17 | s3-smbldap: move ldap_open_with_timeout out of smb_ldap.h to ads where it lives. | Günther Deschner | 1 | -9/+0 | |
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Thu Nov 17 03:47:53 CET 2011 on sn-devel-104 | |||||
2011-11-17 | s3-smbldap: remove duplicate LDAP_OPT_SUCCESS define. | Günther Deschner | 1 | -3/+0 | |
Guenther | |||||
2011-11-17 | s3-smbldap: include talloc.h and tevent.h in smbldap.h | Günther Deschner | 1 | -0/+3 | |
Guenther | |||||
2011-11-17 | s3-smbldap: improve smbldap.h readability and rearrange some defines. | Günther Deschner | 2 | -59/+53 | |
Guenther | |||||
2011-11-17 | s3-smbldap: remove duplicate prototype. | Günther Deschner | 1 | -6/+0 | |
Guenther | |||||
2011-11-17 | param: calculate server role from security, and security from server role | Andrew Bartlett | 1 | -1/+0 | |
This allows smb.conf files from either the samba3 or samba4 tradition to come to the same value of server role, using the information in the smb.conf file. This is important so that tools like 'net getlocalsid' work against a Samba4 AD installation (yes, users have tried this). Andrew Bartlett Pair-Programmed-With: Amitay Isaacs <amitay@samba.org> | |||||
2011-11-17 | s3-param remove lp_domain_logons(), always use IS_DC | Andrew Bartlett | 1 | -1/+0 | |
This makes the code internally consistant. Andrew Bartlett Pair-Programmed-With: Amitay Isaacs <amitay@samba.org> | |||||
2011-11-17 | s3-param: Add "server role" as global parameter | Amitay Isaacs | 1 | -0/+1 | |
This will help extracting server role processing code in common library. | |||||
2011-11-16 | s3-libsmb: introduce option to disable dos error mapping | Björn Baumbach | 1 | -0/+1 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2011-11-16 | s3-smbldap: extend smbldap_init() with binddn/bindsecret arguments. | Günther Deschner | 1 | -2/+5 | |
Guenther | |||||
2011-11-16 | s3-smbldap: remove duplicate prototype of smbldap_init(). | Günther Deschner | 1 | -3/+0 | |
Guenther | |||||
2011-11-16 | s3-passdb: split out passdb/pdb_ldap_schema.c | Günther Deschner | 1 | -102/+0 | |
Guenther | |||||
2011-11-16 | s3-smbldap: use include/smb_ldap.h in smbldap.h | Günther Deschner | 1 | -1/+1 | |
Guenther | |||||
2011-11-16 | Fix bug #8561 - Password change settings not fully observed. | Jeremy Allison | 1 | -0/+1 | |
Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed Nov 16 00:22:41 CET 2011 on sn-devel-104 | |||||
2011-11-15 | s3-winbind: Increase the negative cache entry timout. | Andreas Schneider | 1 | -1/+1 | |
The timout for the cache entry of a negative connection should be the double of a connect timeout (which is 30 seconds). | |||||
2011-11-04 | s3:libsmb: also remember the optional server name from the negprot response | Stefan Metzmacher | 1 | -0/+1 | |
W2K (at least sp4) and higher also send the server name. metze | |||||
2011-11-02 | s3-trustdomcache: make enumerate_domain_trusts() static. | Günther Deschner | 1 | -3/+0 | |
Guenther | |||||
2011-10-28 | lib/util Split samba-modules library into public and private parts | Andrew Bartlett | 1 | -1/+1 | |
This will allow OpenChange to get at the symbols it needs, without exposing any more of this as a public API than we must. Andrew Bartlett | |||||
2011-10-28 | s3-passdb: use tevent_context in passdb. | Günther Deschner | 1 | -2/+3 | |
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Fri Oct 28 13:09:47 CEST 2011 on sn-devel-104 | |||||
2011-10-28 | s3-smbldap: use tevent_context in smbldap. | Günther Deschner | 1 | -3/+3 | |
Guenther | |||||
2011-10-27 | s3: Add serverids_exist | Volker Lendecke | 1 | -0/+5 | |
2011-10-27 | s3: Add processes_exist | Volker Lendecke | 1 | -0/+2 | |
2011-10-27 | s3-ctdb: Add ctdb_processes_exist | Volker Lendecke | 1 | -0/+3 | |
This sends out a number of process_exists controls in parallel and collects the replies as they come in. | |||||
2011-10-27 | s3: Fix some nonempty blank lines | Volker Lendecke | 1 | -3/+3 | |
2011-10-27 | s3: Enable uid wrapper. | Andreas Schneider | 1 | -3/+0 | |
Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Thu Oct 27 15:06:58 CEST 2011 on sn-devel-104 | |||||
2011-10-26 | s3:include: implement trans_oob() as wrapper to smb_buffer_oob() | Stefan Metzmacher | 2 | -1/+3 | |
metze | |||||
2011-10-26 | libcli/smb: merge NEGOTIATE_SECURITY_* flags to smb_constants.h | Stefan Metzmacher | 1 | -6/+0 | |
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Wed Oct 26 11:27:12 CEST 2011 on sn-devel-104 | |||||
2011-10-25 | s3:libsmb: s/event_context/tevent_context/ in async_smb.[ch] | Stefan Metzmacher | 1 | -2/+2 | |
metze | |||||
2011-10-25 | libcli/smb: move smb_signing.[ch] to the toplevel | Stefan Metzmacher | 1 | -54/+0 | |
metze | |||||
2011-10-24 | libcli/smb: merge LOCKING_ANDX_* and OPLOCK_* defines to smb_constants.h | Stefan Metzmacher | 1 | -11/+4 | |
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon Oct 24 17:46:47 CEST 2011 on sn-devel-104 | |||||
2011-10-24 | libcli/smb: move more defines to smb_constants.h | Stefan Metzmacher | 1 | -106/+0 | |
metze | |||||
2011-10-24 | libcli/smb: move CAP_* defines to smb_constants.h | Stefan Metzmacher | 1 | -46/+0 | |
metze |