summaryrefslogtreecommitdiff
path: root/source3/include
AgeCommit message (Collapse)AuthorFilesLines
2011-02-14s3-librpc: no need to globally include endpointmapper headers.Günther Deschner1-1/+0
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Mon Feb 14 12:31:56 CET 2011 on sn-devel-104
2011-02-14s3: move some defines to a better place.Günther Deschner1-17/+4
Guenther
2011-02-14s3-proto: remove prototype for non-existing functions.Günther Deschner1-4/+0
Guenther
2011-02-14s3-librpc: remove duplicate prototypes.Günther Deschner1-18/+0
Guenther
2011-02-13s3: Convert tldap_entry_values args to "array, count"Volker Lendecke1-1/+1
2011-02-13s3: Add an explicit counter to tldap_add_mod_[blobs|str]Volker Lendecke1-3/+5
2011-02-13s3: Convert tldap_make_mod_fmt args to "array, count"Volker Lendecke1-1/+1
2011-02-13s3: Convert tldap_make_mod_blob args to "array, count"Volker Lendecke1-1/+1
2011-02-13s3: Convert tldap_add_mod_blobs args to "array, count"Volker Lendecke1-1/+1
2011-02-10s3: Align the args in tldap_modifyVolker Lendecke1-2/+2
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Thu Feb 10 23:20:05 CET 2011 on sn-devel-104
2011-02-10s3: Align tldap_add and tldap_add_sendVolker Lendecke1-1/+1
2011-02-10s3: give ../librpc/ndr/util.c its own header.Günther Deschner1-7/+0
Guenther
2011-02-10s3-auth Remove unused pam_handleAndrew Bartlett1-2/+0
Signed-off-by: Andrew Tridgell <tridge@samba.org>
2011-02-10s3-auth Rename cryptic 'ptok' to security_tokenAndrew Bartlett1-1/+1
This will allow the auth_serversupplied_info struct to be migrated to auth_session_info easier. Adnrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org>
2011-02-10Put OpenDir() back the way it was - don't overload with an fsp arg. Create ↵Jeremy Allison1-1/+0
OpenDir_fsp for new usage. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu Feb 10 02:43:31 CET 2011 on sn-devel-104
2011-02-09Allow SMB2_FIND to actually use the open fd handle if we support fdopendir. ↵Jeremy Allison1-1/+3
Fallback to pathname opendir if not.
2011-02-09Correctly plumb in VFS_FDOPENDIR.Jeremy Allison1-2/+2
2011-02-09s3: move some stuff out of smb.h to better locations.Günther Deschner2-6/+2
Guenther
2011-02-09s3: remove unused struct uuid_flat.Günther Deschner1-7/+0
Guenther
2011-02-09s3:popt: add POPT_COMMON_OPTION to provide only the "--option" featureMichael Adam1-0/+2
2011-02-09s3:rpc_client: make rpccli_bh_create() non-static for nowStefan Metzmacher1-0/+1
metze
2011-02-09Add fdopendir to the VFS. We will use this to reuse a directory fd already ↵Jeremy Allison3-0/+15
open by NtCreateX. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed Feb 9 00:55:22 CET 2011 on sn-devel-104
2011-02-08Pass fsp to dptr_CloseDir(). Cope with setting the fd if we're closing an fd ↵Jeremy Allison1-1/+1
that opendir knows about.
2011-02-08Add fdopendir().Jeremy Allison1-0/+1
2011-02-09s3: Fix some nonempty blank lines and some typosVolker Lendecke1-3/+3
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Feb 9 00:01:45 CET 2011 on sn-devel-104
2011-02-08pam: share pam errors in a common location.Günther Deschner1-7/+0
Guenther
2011-02-08libndr: share some uuid helpers.Günther Deschner1-3/+0
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Feb 8 09:52:56 CET 2011 on sn-devel-104
2011-02-08ndr: merge ndr_map_error2string and ndr_errstr.Günther Deschner1-1/+0
Guenther
2011-02-08ndr: move null_ndr_syntax_id to the common libndr location.Günther Deschner1-1/+0
Guenther
2011-02-07s3-rpc_server: Added a svcctl shutdown function.Andreas Schneider1-0/+1
Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-07s3-services: Migrated svcctl registry functions to winreg.Andreas Schneider1-12/+0
This is a bigger commit. It moves the relevant function to svc_winreg_glue. We need to use them in the same commit else we have problems with prototypes in proto.h. Signed-off-by: Günther Deschner <gd@samba.org>
2011-02-06s3: Fix auth_netlogond to cope with netlogon_creds_CredentialStateVolker Lendecke1-2/+0
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sun Feb 6 17:30:48 CET 2011 on sn-devel-104
2011-02-05Fix try_chown code. Use new vfs_chown_fsp() which always trys fd first.Jeremy Allison1-2/+2
Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Sat Feb 5 03:33:59 CET 2011 on sn-devel-104
2011-01-31Revert "s3:events: Call all ready fd event handlers on each iteration of the ↵Stefan Metzmacher1-1/+1
main loop" This reverts commit 455fccf86b6544cd17a2571c63a88f8aebff3f74. I'll add a more generic fix for this problem. metze
2011-01-25Fix bug #7863 - Unlink may unlink wrong file when hardlinks are involved.Jeremy Allison2-12/+24
Do this by keeping a linked list of delete on close tokens, one for each filename that identifies a path to the dev/inode. Use the jenkins hash of the pathname to identify the correct token.
2011-01-25Add uint32_t name_hash argument (currently unused) to get_file_infos().Jeremy Allison1-0/+1
Will be used when we store more than one delete on close token.
2011-01-25Add name_hash into the share mode entry struct (as yet only use for renames ↵Jeremy Allison2-4/+9
to identify a specific path).
2011-01-25Add name_hash to files_struct. Set within fsp_set_smb_fname().Jeremy Allison2-0/+3
2011-01-25idl: add file_id idl.Günther Deschner2-11/+1
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Jan 25 12:27:00 CET 2011 on sn-devel-104
2011-01-25libndr: move ndr_print_bool to ndr_basic.cGünther Deschner1-1/+0
Guenther
2011-01-21s3:winbind: Fork multiple children per domainVolker Lendecke1-0/+1
This makes us scale better with many simultaneous winbind requests, some of which might be slow. This implementation breaks offline logons, as the cached credentials are maintained in a child (this needs fixing). So, if the offline logons are active, only allow one DC connection. Probably the offline logon and the scalable file server cases are separate enough so that this patch is useful even with the restriction.
2011-01-17s3: Remove some unused codeVolker Lendecke1-2/+0
2011-01-17s3: Remove unused cli_send_keepaliveVolker Lendecke1-1/+0
2011-01-17s3: Remove unused cli_send/receive_transVolker Lendecke1-9/+0
2011-01-17s3: Make cli_setpathinfo_basic use cli_setpathinfoVolker Lendecke1-6/+6
2011-01-17s3: Add cli_setpathinfoVolker Lendecke1-0/+5
2011-01-17s3: Rename cli_setpathinfo->cli_setpathinfo_basicVolker Lendecke1-6/+6
2011-01-17s3: Remove unused cli_send/receive_nt_transVolker Lendecke1-9/+0
2011-01-17s3: Move dump_ntquota* to smbcquotas.cVolker Lendecke1-2/+0
2011-01-17s3: Convert cli_set_fs_quota_info to cli_transVolker Lendecke1-1/+2