summaryrefslogtreecommitdiff
path: root/source3/include
AgeCommit message (Collapse)AuthorFilesLines
2008-10-15Merge branch 'master' of git://git.samba.org/sambaJelmer Vernooij1-5/+13
2008-10-15s3-build: re-run make samba3-idl.Günther Deschner1-5/+13
Guenther
2008-10-15Share initshutdown.idl.Jelmer Vernooij1-10/+0
2008-10-15Share xattr implementation.Jelmer Vernooij1-9/+0
2008-10-15Share libndr.h between Samba 3 and Samba 4.Jelmer Vernooij1-0/+5
2008-10-14Merge branch 'master' of git://git.samba.org/sambaJelmer Vernooij1-0/+1
2008-10-14Remove unused header file.Jelmer Vernooij1-1/+0
2008-10-14s3-build: fix init_samba_module missing proto warning.Günther Deschner1-0/+1
Guenther
2008-10-14Rely on standard {u,}int{8,16,32,64}_t types provided by system orJelmer Vernooij1-41/+8
libreplace for {u,}int{8,16,32,64} defines.
2008-10-14Remove define for VOLATILE, volatile is already provided by libreplace.Jelmer Vernooij1-12/+2
2008-10-14MAXHOSTNAMELEN is already provided by libreplace if not by the system.Jelmer Vernooij1-8/+0
2008-10-14Remove unused data type schar. If we really need this, it should probably be ↵Jelmer Vernooij1-6/+0
typedeffed to int8_t.
2008-10-14Use GUID_random.Jelmer Vernooij1-1/+0
2008-10-14Merge branch 'master' of git://git.samba.org/sambaJelmer Vernooij1-1/+2
2008-10-14Use GUID_from_string.Jelmer Vernooij1-1/+0
2008-10-14Use GUID_string rather than smb_uuid_string().Jelmer Vernooij1-1/+0
2008-10-13Cope with VFS change.Jeremy Allison1-1/+2
Jeremy.
2008-10-14Use {u,}int64_t instead of SMB_BIG_{U,}INT.Jelmer Vernooij9-116/+105
2008-10-13Make the internal pipe functions staticVolker Lendecke1-8/+0
2008-10-13Remove smb_np_structVolker Lendecke2-72/+0
2008-10-13Use "struct files_struct" for pipes instead of smb_np_structVolker Lendecke3-2/+14
2008-10-13Remove the chain_fsp globalVolker Lendecke2-1/+1
2008-10-13Pass struct smb_request to file_freeVolker Lendecke1-4/+5
on the way to get rid of chain_fsp
2008-10-13Pass struct smb_request to file_newVolker Lendecke1-9/+10
Goal is to remove the chain_fsp global variable
2008-10-13Pass struct smb_request to file_fspVolker Lendecke1-1/+1
The goal is to get rid of the chain_fsp global variable
2008-10-13Share ndrdump implementation.Jelmer Vernooij1-0/+1
2008-10-13Import changes from upstream libndr.Jelmer Vernooij1-10/+0
2008-10-12Share RPC binding string utility functions.Jelmer Vernooij1-1/+1
2008-10-12Use common util_file code.Jelmer Vernooij1-7/+7
2008-10-12Sync util_tdb implementations.Jelmer Vernooij1-16/+16
2008-10-12Move rbtree.[ch] to lib/util.Jelmer Vernooij1-132/+0
2008-10-12Use common xfile.h.Jelmer Vernooij2-49/+1
2008-10-12Use common byteorder.h.Jelmer Vernooij2-177/+1
2008-10-12Revert "Make get_rpc_pipe() static"Volker Lendecke1-0/+1
This reverts commit f25972832ec9d5a130da9dc060f4c3ed35bda7db.
2008-10-12Make get_rpc_pipe() staticVolker Lendecke1-1/+0
2008-10-12Fix warning, prototype.Jelmer Vernooij1-1/+1
2008-10-12Share data_blob implementation.Jelmer Vernooij5-27/+6
2008-10-12Use common strlist implementation in Samba 3 and Samba 4.Jelmer Vernooij1-2/+2
2008-10-11Cope with changed signature of http_timestring().Jelmer Vernooij3-5/+2
2008-10-11Remove duplicate copy of dlinklist.h.Jelmer Vernooij2-114/+1
2008-10-11Provide the same set of helper functions for DEBUG in Samba 3 and SambaJelmer Vernooij2-6/+9
4, even though the macros are still different. This makes it possible to use object code compiled with one DEBUG() macro from the other sourceX directory.
2008-10-11Merge branch 'master' of ssh://git.samba.org/data/git/samba into arc4Jelmer Vernooij11-3160/+33
2008-10-10If you have a large number of cups printers, then scanning for print info ↵Jeremy Allison2-2/+7
can cause a client to timeout (it takes longer than 30 seconds to enumerate them). Make scanning for printers async with a callback from the main loop. This fixes a bug that was irritating *me* :-). Jeremy.
2008-10-09Remove SEC_ACCESS. It's a uint32_t.Jeremy Allison2-5/+1
Jeremy.
2008-10-09Remove a pointless level of indirectionVolker Lendecke1-1/+0
2008-10-08For the vfs_acl_xattr.c module, make sure we map GENERIC file and directory bitsJeremy Allison1-0/+1
to specific bits every time a security descriptor is set. The S4 torture suite proves that generic bits are not returned when querying an ACL set using them (ie. only the specific bits are stored on disk). Jeremy.
2008-10-08Deal with inheritance from parent directory when setting WindowsJeremy Allison1-0/+3
ACLs. Jeremy.
2008-10-08Remove unused CHECK_FSP macroVolker Lendecke1-16/+0
2008-10-07Update vfs version as I've added a const to the security_descriptor paramter ↵Jeremy Allison2-4/+5
in fset_nt_acl(). Need to watch the build farm to make sure I haven't broken the AIX or Solaris ACL modules. Jeremy.
2008-10-07Make map_errno_from_nt_status() a generic call, not just a cli specific one.Jeremy Allison1-0/+1
Remove some unused calls from vfs_acl_xattr. Test for SD's on existing files. Jeremy.