summaryrefslogtreecommitdiffstats
path: root/source3/include
Commit message (Collapse)AuthorAgeFilesLines
* patch from Alexander Bokovoy needed for dlopen on bsd systemsAndrew Tridgell2002-04-242-3/+9
| | | | (This used to be commit 38fd99e84176106ed700f637e9292d2a4c1385b4)
* Added constant and message for invalid security descriptor dos error.Tim Potter2002-04-241-0/+1
| | | | (This used to be commit 0827bd4184256a87d6cf6c58bc314309503da7be)
* prototypes for some systems that don't have themAndrew Tridgell2002-04-241-0/+8
| | | | (This used to be commit 2dde9f711979c04cd02107447395a55307f7a30a)
* Added Martin's lpq parse fixes from 2.2.Jeremy Allison2002-04-191-0/+3
| | | | | Jeremy. (This used to be commit 3853234c2649c501e9876f940f802be86cb6383d)
* fixed the fallback to a BDC for ADS connectionsAndrew Tridgell2002-04-181-0/+1
| | | | (This used to be commit 3e58a1ee83ea0b4347ce24e566445cc6cb67bb3a)
* fixed a problem with the smb_buf() macro on some compilersAndrew Tridgell2002-04-161-1/+1
| | | | (This used to be commit 66d6d4810ab7b0a1bf2039c387938aad69e01569)
* reran configure after adding a test for strnlen()Andrew Tridgell2002-04-161-0/+3
| | | | (This used to be commit 78ead781261d397ace22640e3820d0f4fe17722c)
* i forgot to commit these parts of the string handling patch earlier. Sorry.Andrew Tridgell2002-04-161-1/+4
| | | | (This used to be commit bac0093a9713416b1679d1bc167b70f02b06ef78)
* Added hex values as comments for the standard access rights.Tim Potter2002-04-151-5/+5
| | | | (This used to be commit 00511ae2b4bc0ef3bfda89cc0ae3e1fba092b6d6)
* Added a status code for lsa_lookup_{sids,names} returning the fact thatTim Potter2002-04-141-0/+1
| | | | | only some of the entries could be resolved. (This used to be commit 0722e71d1ef59a72567f383e3572546ab78e9e6a)
* Partly based on the work by mimir (Rafal SzczesniakAndrew Bartlett2002-04-143-6/+21
| | | | | | | | | | | | | | | <mimir@diament.ists.pwr.wroc.pl>) this patch allows samba to correctly enumerate its trusted domains - by exaimining the keys in the secrets.tdb file. This patch has been tested with both NT4 and rpcclient/wbinfo, and adds some extra functionality to talloc and rpc_parse to allow it to deal with already unicode strings. Finally, this cleans up some const warnings that were in net_rpc.c by pushing another dash of const into the rpc client code. Andrew Bartlett (This used to be commit 0bdd94cb992b40942aaf2e5e0efd2868b4686296)
* This is the 'multiple pdb backends' patch from ctrlsoft, aka Jelmer VernooijAndrew Bartlett2002-04-132-9/+17
| | | | | | | | | | | | | | <jelmer@nl.linux.org>. This patch also includes major rework of pdbedit to use popt, and the addition of -i paramter (allowing the user to specify which PDBs is being operated on) and -e to export a pdb - useful for backup and testing etc. Use of -i and -e gets us pdb2pdb functionality for transition between backends, much like the sam2sam in TNG. Andrew Bartlett (This used to be commit c10def37f506d3f2bab442418ac08fdb62659b02)
* Remove : from the list seperators, as this is used to seperate out componentsAndrew Bartlett2002-04-121-1/+1
| | | | | | | in the passdb module selection (after the : you have the options). Andrew Bartlett (This used to be commit 6949b630f10ebb76e8e59ca7e832f53571f2c20a)
* added strndup() for systems that don't have itAndrew Tridgell2002-04-111-1/+4
| | | | (This used to be commit 7e92fb7453e4dbf1fe0c32c3dcc1e994cb95b5ea)
* This split the mangling code up to allow for the possibility of multipleAndrew Tridgell2002-04-113-0/+19
| | | | | | | mangling implementation, selectable using "mangling method = " in smb.conf It also tidies the interface a little, although it is still nasty. (This used to be commit be23d87a178e7d0691e7d942adf89bb3d2d533c2)
* Removed duplicate _LARGEFILE64_SOURCE added in error.Jeremy Allison2002-04-111-3/+0
| | | | | Jeremy. (This used to be commit 678f4f455e7ed0a6fafa3ad30ddadd1917e741ef)
* Ensure VFS modules will build correctly by adding defines for CPPFLAGSJeremy Allison2002-04-111-0/+31
| | | | | | defines into acconfig.h - only defined if seen. Jeremy. (This used to be commit 9f2753a1496c51fd56c97984b8def46a651dbfc8)
* Add ads ldap server controlsJim McDonough2002-04-101-0/+5
| | | | (This used to be commit 9126f008ef542b80f0040f621aa28478be5c80a0)
* Added Shirish's client side caching policy change.Jeremy Allison2002-04-101-2/+25
| | | | | Jeremy. (This used to be commit 16015c07eab2e57fa3771051e3e08fde21757cfa)
* Moved definition of winbind username/password secrets into secrets.hTim Potter2002-04-101-2/+8
| | | | (This used to be commit b618b5943d53f33e6f03d8d47cf87efc5e1ad3e5)
* Added WERR_INVALID_FORM_NAME constant.Tim Potter2002-04-091-0/+1
| | | | (This used to be commit 908b70f3e23846d0b438a68e45e076e65016e95e)
* More spelling.Tim Potter2002-04-041-1/+1
| | | | (This used to be commit 21c3dff4109a6a4dc6a1b618a489e49e88743d42)
* If compiling with Insure, mallocate a byte of memory and attach it to theTim Potter2002-04-041-0/+12
| | | | | | | | | | | | | | POLICY_HND structure when passing new handles back from the appropriate cli_* functions. When closing the policy handle free the memory. Insure (and indeed other memory checkers) should detect handles that have not been closed properly as memory leaks. Unfortunately this can only be done when the program terminates (set insure++.summarize leaks in your .psrc file) rather than when the policy handle falls out of scope. Looks like Jeremy has squished all the policy handle leaks at the moment but more are bound to crop up later. (This used to be commit 6dc80d625752f0a3ce6fd7b2278095529c6ec29f)
* added a shutdown command to smbcontrol.Jean-François Micouleau2002-03-291-0/+2
| | | | | | | have to add the server side now. J.F. (This used to be commit b83f87d6811dbad2c254cd5add4bbedb3196c629)
* Added sys_adminlog() system for info the appliance admins reallyJeremy Allison2002-03-271-0/+33
| | | | | | need to know about. Different from the DEBUG system. Jeremy. (This used to be commit 74eac41c681f92a6da0ae2167f031e021862e0d8)
* Removed HAVE_LIBDL from most places (except system.c). Added checks forJeremy Allison2002-03-271-0/+12
| | | | | | | dlopen & friends into configure.in. This should help building on *BSD where dl*** calls are in libc. Jeremy (This used to be commit ac1baba35d7a399bf800ced49a4384e39955e3eb)
* OpenPrinter() merge from 2.2Gerald Carter2002-03-261-1/+18
| | | | (This used to be commit 619397cc90549d4602ecddc25ee50eb247c913ee)
* Fix the mp3 rename bug - also tidy up our open code and remove the specialJeremy Allison2002-03-231-6/+3
| | | | | | cases for rename and unlink. Had to add desired_access into the share mode record. Jeremy. (This used to be commit 3b1b8ac43535fb0839c5474fa55bf7150f6cde31)
* Stomped on some header file version numbers that have crept back in.Tim Potter2002-03-223-6/+3
| | | | (This used to be commit e66bdf1229ba84f64c19e817e2c4081dbbf0bee8)
* Compile fix for --with-profiling-dataTim Potter2002-03-211-0/+2
| | | | (This used to be commit 1ae07c42a449f4d4049c15f349f0829b73c12b5e)
* Print queue entries *must* have queue names, not numbers - numbers areJeremy Allison2002-03-201-2/+2
| | | | | | | not identical between different smbds (mr potter, come here and take your medicine.... :-). Jeremy. (This used to be commit 230941d2fbb746d39c00e482e7f600c68aa45efa)
* John's patch changed the size of a structure stored in the tdb - weJeremy Allison2002-03-201-1/+1
| | | | | | must thus update the versionid of the tdb. Jeremy. (This used to be commit c5230a5387d6ef57f89f4224b75de84b18c109ff)
* BUFFER_SIZE Should be 128k if large read write tests are to work.Jeremy Allison2002-03-201-0/+5
| | | | | Jeremy. (This used to be commit 2be9b253ad40e125169725ea79e6723cb40c5e6a)
* resetprinter merge from SAMBA_2_2Gerald Carter2002-03-201-1/+2
| | | | (This used to be commit 88d8897e21749f177952b264031aa386bbbeaaeb)
* Remove the "stat open" code - make it inline. This should fix theJeremy Allison2002-03-201-1/+0
| | | | | | | | | bugs with opening and renaming mp3 files, also the word rename problems that people have had for a while. Needs a make clean :-) make. Also added JohnR's printing fix. Jeremy. (This used to be commit 504e5ef0494c54efbd0357e334cb2aa5a9eb9c14)
* second step to gain free uid<->rid mappingSimo Sorce2002-03-192-8/+15
| | | | | we still need to free gid<->rid mapping and few other stuff (This used to be commit aa4b6f8181f34196a28951264dd8b631a5deef7f)
* Merge in JohnR's page count fixes.Jeremy Allison2002-03-192-0/+2
| | | | | Jeremy. (This used to be commit 2e3133fbe5531b9bbc9bf46a04b27fa58e555f5a)
* Sync up vfs changes from 2.2.x.Jeremy Allison2002-03-193-2/+8
| | | | | Jeremy. (This used to be commit ad1e858d8e72adf924ff435eab8da3e60842e2e6)
* ops forgot this :-)Simo Sorce2002-03-191-0/+8
| | | | (This used to be commit fdb88eb06af09171af2027a90ef6f3ac872beaee)
* preparing for release of 3.0-alpha17Samba Release Account2002-03-181-1/+1
| | | | (This used to be commit a772386d34178ffb8926bfd071ad028de40cefaf)
* syncing up printing code with SAMBA_2_2 (already done some mergesGerald Carter2002-03-153-15/+116
| | | | | | | | | | | | | | in the reverse). * add in new printer change notify code from SAMBA_2_2 * add in se_map_standard() from 2.2 in _spoolss_open_printer_ex() * sync up the _print_queue_struct in smb.h (why did someone change the user/file names in fs_user/fs_file (or vice-versa) ? ) * sync up some cli_spoolss_XXX functions (This used to be commit 5760315c1de4033fdc22684c940f18010010924f)
* include/smb_macros.h: Don't round up an allocation if the size is zero.Jeremy Allison2002-03-131-1/+1
| | | | | | | | | | | | | | | "One of these locks is not like the others... One of these locks is not quite the same" :-). When is a zero timeout lock not zero ? When it's being processed by Windows 2000 of course.. This code change, ugly though it is - completely fixes the foxpro/access multi-user file system database problems that people have been having. I used a *wonderful* test program donated by "Gerald Drouillard" <gerald@drouillard.ca> which allowed me to completely reproduce this problem, and to finally determine the correct fix. This also explains why Windows 2000 is *so slow* when responding to the smbtorture lock tests. I *love* it when all these things come together and finally make sense :-). Jeremy. (This used to be commit 8aa9860ea2ea7f5aed4b6aa12794fffdfa81b0d0)
* Added POSIX ACL layer into the vfs.Jeremy Allison2002-03-122-3/+26
| | | | | Jeremy. (This used to be commit 7d59445b6962547a8938928a9371651a09e26516)
* preparing for release of 3.0-alpha16Samba Release Account2002-03-101-1/+1
| | | | (This used to be commit 77fe6a914888f09f96b4468ea5d1bc1953fe63c5)
* yipee! Finally put in the patch from Alexey KotovichAndrew Tridgell2002-03-102-46/+73
| | | | | | | | | <a.kotovich@sam-solutions.net> that adds the security decsriptor code for ADS workstation accounts thanks for your patience Cat, and thanks to Andrew Bartlett for extensive reviews and suggestions about this code. (This used to be commit 6891393b5db868246fe52ff62b3dc6aa5ca6f726)
* Fix for machines that have their time changed forward, then back. EnsureJeremy Allison2002-03-071-0/+7
| | | | | | | that any cached lpq information gathered during that time doesn't stay around for longer than 1 hour. Jeremy. (This used to be commit 39fca711a5cf15a03d6c79639b202712d1749a64)
* Change xcopy test to use defined constants rather than magic hexJeremy Allison2002-03-071-6/+6
| | | | | | values so we can see what's going on. Jeremy. (This used to be commit 5ba4ba36339269b2059da7c103e63ecd948f7938)
* Fix the NTSTATUS -> WERROR for srvsvc pipe.Jeremy Allison2002-03-052-16/+18
| | | | | Jeremy. (This used to be commit 2b85d3570c2b149049482c3878c50cf8f5bfca61)
* Spelling fixes.Tim Potter2002-03-051-1/+1
| | | | (This used to be commit a7fa0733badad66ae610eac5e01569cf264976f3)
* Matching header files for the last netlogon cleanup.Andrew Bartlett2002-03-031-0/+7
| | | | | Andrew Bartlett (This used to be commit a9edcc1cb7c5f2692bc1931f0a2059a91891f178)