summaryrefslogtreecommitdiffstats
path: root/source/include
Commit message (Collapse)AuthorAgeFilesLines
...
| * Ensure we mask off deny modes correctly on being set (this shouldn't haveJeremy Allison2001-10-191-1/+1
| | | | | | | | | | | | caused problems but is tidier). Fix debug statement in locking.c Jeremy.
| * Added include guards around file.Jeremy Allison2001-10-191-0/+4
| | | | | | | | Jeremy
| * Add rap.h for net utility and libsmbJim McDonough2001-10-191-0/+2
| |
| * Add header for common RAP definitionsJim McDonough2001-10-191-0/+478
| |
| * Restored old Bmpx code - actually used by OS/2.Jeremy Allison2001-10-192-0/+13
| | | | | | | | Jeremy.
| * the beginnings of kerberos support in smbd. It doesn't work yet, butAndrew Tridgell2001-10-181-0/+4
| | | | | | | | | | it should give something for others to hack on and possibly find what I'm doing wrong.
| * added basic NTLMSSP support in smbd. This is still quite rough, andAndrew Tridgell2001-10-171-0/+6
| | | | | | | | | | | | loses things like username mapping. I wanted to get this in then discuss it a bit to see how we want to split up the existing session setup code
| * very simple asynchronous "lpq" thread patchJean-François Micouleau2001-10-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | To speed up operations with the lpq command, it's now run in a separate asynchronous process. Opening the Printers folder on NT is now fast ;-) I think even faster than with a ** server Jeremy, you should look at that patch to include it in 2.2.3 J.F.
| * forgot to add intl.hAndrew Tridgell2001-10-141-0/+25
| |
| * the next step in the intl changeover. This should get us compiling agian,Andrew Tridgell2001-10-142-52/+1
| | | | | | | | | | | | | | and also completes the switch to lang_tdb.c. SWAT should now work with a po file in the lib/ directory also removed useless SYSLOG defines in many files
| * Moved to rpcclient subdirectory.Tim Potter2001-10-121-33/+0
| |
| * Some old stuff hanging around since the CIFS conference. Big cleanup ofTim Potter2001-10-121-1/+0
| | | | | | | | | | | | rpcclient code. Refactored cmd_* functions to move common mem_ctx and pipe opening stuff up one level. Moved rpcclient.h into rpcclient directory and out of includes/smb.h
| * moved some OIDs to the ASN.1 headerAndrew Tridgell2001-10-121-0/+6
| |
| * added NTLMSSP authentication to libsmb. It seems to work well so I have ↵Andrew Tridgell2001-10-122-1/+2
| | | | | | | | enabled it by default if the server supports it. Let me know if this breaks anything. Choose kerberos with the -k flag to smbclient, otherwise it will use SPNEGO/NTLMSSP/NTLM
| * added a ASN.1 parser, so now I can properly parse the negTokenInitAndrew Tridgell2001-10-111-0/+4
| | | | | | | | | | | | | | | | | | packet which means I can extract the service and realm, so we should now work with realms other than the local realm. it also means we now check the list of OIDs given by the server just in case it says that it doesn't support kerberos. In that case we should fall back to NTLMSSP but that isn't written yet.
| * first step in converting the head branch to use lang_tdb.c insteadAndrew Tridgell2001-10-111-64/+0
| | | | | | | | of gettext for internationalisation support. There is more to do
| * profile.h is now known as smbprofile.h due to a conflict with badlyAndrew Tridgell2001-10-111-461/+0
| | | | | | | | written MIT kerberos5 header files :(
| * initial kerberos/ADS/SPNEGO support in libsmb and smbclient. ToAndrew Tridgell2001-10-116-3/+518
| | | | | | | | | | | | | | | | | | | | activate you need to: - install krb5 libraries - run configure - build smbclient - run kinit to get a TGT - run smbclient with the -k option to choose kerberos auth
* | Make version 2.2.2.Jeremy Allison2001-10-121-1/+1
| | | | | | | | Jeremy.
* | nsswitch/winbindd_group.c: Memory leak fixes.Jeremy Allison2001-10-121-3/+3
| | | | | | | | | | | | Changed "nt acl support" to a per-share parameter, fixed profile problem with w2ksp2. Jeremy
* | Move over autoconf files. Remove id lines.Jeremy Allison2001-10-112-4/+19
| | | | | | | | Jeremy.
* | New files added.Jeremy Allison2001-10-111-39/+9
| | | | | | | | Jeremy.
* | Sync-up with SAMBA_2_2 branch.Jeremy Allison2001-10-1115-1001/+1044
| | | | | | | | Jeremy.
* | This commit was manufactured by cvs2svn to create branchcvs2svn Import User2001-10-101-0/+173
|\| | | | | 'SAMBA_2_2_RELEASE'.
| * Move CLI_POLICY_HND to be internal to winbindd.Tim Potter2001-10-051-9/+0
| |
| * removed old unused filesAndrew Tridgell2001-10-032-10730/+0
| |
| * Removed 'extern int DEBUGLEVEL' as it is now in the smb.h header.Tim Potter2001-10-021-1/+0
| |
| * Added copyright (not sure who owns it though) and #include guards.Tim Potter2001-10-021-0/+25
| |
| * Added copyright and include guards.Tim Potter2001-10-021-1/+23
| |
| * - fix handling of 0 last_change_time and must_change_timeAndrew Tridgell2001-10-011-0/+3
| | | | | | | | - move the arbitrary 21 day timeout to local.h
| * Make header comment clearer, these are RIDs, not UIDs.Andrew Bartlett2001-09-301-2/+3
| |
| * Finally kill off the SMBENCRYPT() macro.Andrew Bartlett2001-09-301-2/+0
| |
| * Fixed CUPS detection - patch from Michael Sweet.Jeremy Allison2001-09-281-3/+3
| | | | | | | | Jeremy.
| * Fixup passdb stuff to add new nisplus and ldap backends.Jeremy Allison2001-09-251-11/+70
| | | | | | | | Jeremy.
| * fixed the really awful performance problem with the stat cache when itAndrew Tridgell2001-09-251-1/+1
| | | | | | | | | | ran out of primes and used a power of two hash modulus. It ended up sticking all the entries in just a few buckets. Yuck!
| * added a little smbtorture test for dumping the unicode table of aAndrew Tridgell2001-09-251-1/+1
| | | | | | | | | | | | | | | | | | server. This is just a framework right now - I want this to eventually replace the win32 test code from monyo The interesting this about this test is that it shows up a really horrible performance bug in our stat cache code. I'll see if I can fix it.
| * Added SWAT i18n feature:Motonobu Takahashi2001-09-242-0/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TO enable configure with --with-i18n-swat to support this gettext is integrated and a new directories name "po" and "intl" are created. now these languages are supported: en - English (default) ja - Japanese po - Polish tr - Turkish To add your language, to create ${your_language}.po by translating source/po/en.po into your language is needed. some of html and image files of various language version are not included yet, though message catalogue files are installed. you need to copy files manually under ${swatdir}/lang/$ln/{help,images,included,using_samba} And also added a option to intall manual pages: of various lang version To enable configure with --with-manlangs but manual pages themself are not included yet.
| * fixed the Makefile so we don't rebuild libsmbclient and build_env.hAndrew Tridgell2001-09-221-1/+1
| | | | | | | | (and thus smbd) every time
| * These are RIDs not Unix UIDs so make this clear in the feild names.Andrew Bartlett2001-09-221-2/+2
| | | | | | | | Andrew Bartlett
| * Attempt to make quotas work with RH7.1, and with other Linuxen... This isJeremy Allison2001-09-211-0/+2
| | | | | | | | | | *HARD*, dammit ! Jeremy.
| * Reran autoconf, autoheaderAndrew Bartlett2001-09-191-0/+10
| |
| * Add the ability to display Samba's build options with smbd -b and as a level 4Andrew Bartlett2001-09-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DEBUG(). Also included are details like build date/time, location and compiler. This should get most of the options we set, except those that don't affect smbd, like WITH_PAM_SMBPASSWD or WITH_WINBINDD. This work due to Vance Lankhaar <vlankhaar@hotmail.com> Some work needs to be done to make it only rebuild when needed (ie smbd being rebuilt) but its in pretty good shape already. Also fix up some printf() -> d_printf(). Andrew Bartlett
| * Correct fix for unaligned memcpy - malloc'ed memory incremented by ↵Jeremy Allison2001-09-181-1/+4
| | | | | | | | | | | | | | | | | | | | sizeof(struct locking_data) was not forced to be 8 byte aligned. Use union to force it to be correctly aligned for memcpy and use void *, to tell compiler not to optimize aligned copy (this last fix suggested by Trond @ RedHat). The first fix should be sufficient, but this provides a "belt and braces" fix. Jeremy.
| * Use structure copy to fix unaligned accesses on 64bit architectures onJeremy Allison2001-09-181-1/+1
| | | | | | | | | | Linux. Jeremy.
| * introduce SAFE_FREE() macro as suggested by andreas moroder.Simo Sorce2001-09-171-0/+3
| |
| * Start pushing the NTSTATUS stuff out to the wire for session setups.Andrew Bartlett2001-09-161-0/+1
| | | | | | | | | | | | | | | | | | Rework the 'map to guest' code, its now possible to follow what its trying to do... Add an NT_STATUS_EQUAL(x,y) macro to make this stuff sane to look at. Andrew Bartlett
| * Fixed up Solaris 64 bit configure.Jeremy Allison2001-09-151-1/+2
| | | | | | | | Jeremy.
| * merges from 2.2Gerald Carter2001-09-141-1/+1
| |
| * Removed CHECK_STRUCT macro - it isn't used anywhere.Tim Potter2001-09-141-12/+0
| |
| * Oops.Tim Potter2001-09-141-1/+1
| |