summaryrefslogtreecommitdiffstats
path: root/source/smbd/service.c
Commit message (Collapse)AuthorAgeFilesLines
* r22138: * Sync up with the SAMBA_3_0_25 as of svn r22132.Gerald Carter2007-04-091-2/+20
| | | | | * Set VERSION to 3.0.25rc1 * Update release notes.
* r21585: Start syncing the monster that will become 3.0.25pre1Gerald Carter2007-02-281-54/+124
| | | | | | | | Still todo: * release notes * few minor outstanding patches * additional idmap man pages
* r19706: merge up to r19705 from SAMBA_3_0 (good for 3.0.23d now)Gerald Carter2006-11-141-0/+9
|
* r17437: sync valid users and server signing fixesGerald Carter2006-08-071-2/+2
|
* r16925: final changes for 3.0.23Gerald Carter2006-07-101-0/+5
|
* r15837: starting sync up for 3.0.23rc1 (in sync with SAMBA_3_0 r15822)Gerald Carter2006-05-231-10/+31
|
* r15088: Remove all time() and gettimeofday() calls out of the mainlineJeremy Allison2006-04-151-3/+2
| | | | | | packet processing code. Only do these when needed (ie. in the idle timeout code). We drop an unneccessary global here too. Jeremy.
* r13571: Replace all calls to talloc_free() with thye TALLOC_FREE()Gerald Carter2006-02-201-3/+3
| | | | macro which sets the freed pointer to NULL.
* r13494: Merge the stuff I've done in head the last days.Volker Lendecke2006-02-131-1/+1
| | | | Volker
* r13316: Let the carnage begin....Gerald Carter2006-02-031-81/+206
| | | | Sync with trunk as off r13315
* r13095: Fix warnings assigning int to a size_t.Jeremy Allison2006-01-231-1/+3
| | | | Jeremy.
* r12308: ReformattingVolker Lendecke2005-12-171-4/+2
|
* r12307: Reformatting plus a trivial if/else simplification. There's no point ↵Volker Lendecke2005-12-171-72/+122
| | | | | | | | in doing an else branch that only returns NULL. Volker
* r12213: Final fix for #3303 - send rename messages to smbd'sJeremy Allison2005-12-131-1/+4
| | | | | | | | that have open file handles to allow them to correctly implement delete on close. There is a further correctness fix I'm intending to add to this to cope with different share paths, but not right now... Jeremy.
* r12194: Ensure that when we set a connection path we've canonicalizedJeremy Allison2005-12-121-3/+102
| | | | | | | | | the name (must be abolute - start with /, must not end in /, must have ./ and ../ removed). Of course for realpath resolved paths this won't be the case but for others we need this name to be canonicalized. This name is going into the sharemode db for #3303 so needs to be in a normalized format. Jeremy.
* r10693: Fix bug #3129, reported by Adam Porter <sambabugzilla@alphapapa.net>.Jeremy Allison2005-10-031-4/+8
| | | | | Rotten error message caused hours of wasted time. Jeremy.
* r7963: Add aio support to 3.0.Jeremy Allison2005-06-271-0/+1
| | | | Jeremy.
* r7948: Ensure we call the vfs connection hook before doing a vfs stat.Jeremy Allison2005-06-271-19/+21
| | | | | | Allows database vfs backends to initialise with a working connection. Bugid #2827 Jeremy.
* r7210: Fix my own mistakes up, sorry.Jeremy Allison2005-06-031-1/+1
| | | | Jeremy.
* r7200: Don't use memset, use SET_STAT_INVALID (has the same effect).Jeremy Allison2005-06-021-1/+1
| | | | Jeremy.
* r7139: trying to reduce the number of diffs between trunk and 3.0; changing ↵Gerald Carter2005-05-311-2/+4
| | | | version to 3.0.20pre1
* r6625: Remove another global variable left over from a long time ago (magic ↵Jeremy Allison2005-05-061-3/+0
| | | | | | char). Jeremy.
* r6497: Ensure yield_connection() is called on all appropriate error conditions.Jeremy Allison2005-04-261-19/+22
| | | | Jeremy.
* r6225: get rid of warnings from my compiler about nested externsHerb Lewis2005-04-061-1/+1
|
* r5905: Fix two warnings found by AIX. They might actually be bugs on 64-bitVolker Lendecke2005-03-191-1/+1
| | | | | | platforms. Volker
* r5608: BUG 2399 - removing dead code (not finished with bug yet).Gerald Carter2005-03-011-13/+0
|
* r5607: Fix for bug #2399 - ensure we use SMB_VFS_STAT instead of statJeremy Allison2005-03-011-1/+2
| | | | | when checking for existance of a pathname. Jeremy.
* r5183: Ensure we correctly set the per-connection "case_sensitive" setting.Jeremy Allison2005-02-031-9/+18
| | | | | | Rename dptrs_open to the more correct dirhandles_open. Remove old #if 1. Jeremy.
* r4539: patch from Rob -- adding real printcap name cache function to speed ↵Gerald Carter2005-01-051-36/+1
| | | | up printcap reloads
* r4043: BUG 2091: don't remove statically defined printers in ↵Gerald Carter2004-12-021-4/+12
| | | | remove_stale_printers()
* r2475: A more helpful debug-message when a connection to a dfs-proxy-share isGünther Deschner2004-09-211-1/+2
| | | | | | failing. Guenther
* r2076: Removed old dir caching code - not being used now we have theJeremy Allison2004-08-251-2/+0
| | | | | | statcache anyway. New dir caching will be done on nanosecond timestamps. Jeremy.
* r1414: Memory leak fixes found by valgrind whilst checking the password ↵Jeremy Allison2004-07-091-2/+6
| | | | | | | history code. Error code paths were not freeing up some memory. Jeremy.
* r1154: Change default setting for case sensitivity to "auto". If set to autoJeremy Allison2004-06-151-3/+24
| | | | | | | | | | | | then is the client supports it (current clients supported are Samba and CIFSVFS - detected by the negprot strings "Samba", "POSIX 2" and a bare "NT LM 0.12" string) then the setting of the per packet flag smb_flag FLAG_CASELESS_PATHNAMES is taken into account per packet. This allows the linux CIFS client to use Samba in a case sensitive manner. Additional command in smbclient "case_sensitive", toggles the flag in subsequent packets. Docs to follow. Jeremy.
* r933: When using widelinks = no, use realpath to canonicalize theJeremy Allison2004-05-281-0/+14
| | | | | | connection path on connection create for the user. We'll be checking all symlinked paths are below this directory. Jeremy.
* r799: BUG 1259 -- add 'printcap cache time' patch from LarsGerald Carter2004-05-201-0/+24
|
* r656: Make widelinks use realpath(). Tidy up cases where we need to become a ↵Jeremy Allison2004-05-131-3/+3
| | | | | | service. Jeremy.
* r570: Remove lots of globals to handle case issues - move themJeremy Allison2004-05-071-12/+6
| | | | | | | | to connection struct entries (as they should have been from the start). Jerry, once you've cut over to 3.0.4 release branch I'll add this to 3.0 also. - Jerry cut over :-). Jeremy.
* r4: merge in the SAMBA_3_0 branch from cvsCVS Import User2004-04-041-4/+0
| | | | | | | | to checkout try this: svn co svn+ssh://svn.samba.org/home/svn/samba/branches/SAMBA_3_0 samba-3_0-work metze
* r2: import HEAD into svn+ssh://svn.samba.org/home/svn/samba/trunkCVS Import User2004-04-041-0/+838
metze