summaryrefslogtreecommitdiffstats
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
* r22138: * Sync up with the SAMBA_3_0_25 as of svn r22132.Gerald Carter2007-04-092-11/+20
| | | | | * Set VERSION to 3.0.25rc1 * Update release notes.
* r21889: * Pull from SAMBA-3_0_25 svn r21888Gerald Carter2007-03-204-15/+67
| | | | * Set version to 3.0.25pre2
* r21345: Smaller fixes for adssearch:Günther Deschner2007-02-141-49/+74
| | | | | | | | * get rid of horrible ads.h parsing * add LDAP_SERVER_SHUTDOWN_NOTIFY_OID * display hex bitmasks Guenther
* r21105: Quick fix for CLDAP reply without NetLogon attribute.Günther Deschner2007-02-011-2/+27
| | | | Guenther
* r20980: MergeVolker Lendecke2007-01-231-1/+1
|
* r20584: - allocate an OID range for LDB/LDAP extended operationsStefan Metzmacher2007-01-061-0/+1
| | | | metze
* r20579: - allocate an OID range for samba4 LDB/LDAP ControlsStefan Metzmacher2007-01-061-0/+2
| | | | | | - allocate an OID range for conflicting attributes/classes metze
* r19864: forgotten commits in examples from the recent mergeGerald Carter2006-11-232-200/+200
|
* r19799: sync up examples from SAMBA_3_0Gerald Carter2006-11-1924-0/+2181
|\
| * r19745: For the fun of it, add an CLDAP client written in perl.Günther Deschner2006-11-161-0/+466
| | | | | | | | Guenther
| * r19345: Allow better rootdse searches.Günther Deschner2006-10-161-1/+1
| | | | | | | | Guenther
| * r18697: Make sure that adssearch.pl does notGünther Deschner2006-09-191-3/+3
| | | | | | | | | | | | | | | | | | * chase referrals * use paged search control when using the LDAP change notify control for monitoring changes. Guenther
| * r18012: Should fix bug 4018.Derrell Lipman2006-09-031-0/+1
| | | | | | | | | | NetApp filers expect paths in Open AndX Request to have a leading slash. Windows clients send the leading slash, so we should too.
| * r18011: Should fix bug 3835.Derrell Lipman2006-09-031-10/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Jeremy: requires your eyes... If the remote connection timed out while cli_list() was retrieving its list of files, the error was not returned to the user, e.g. via smbc_opendir(), so the user didn't have a way to know to set the timeout longer and try again. This problem would occur when a very large directory is being read with a too-small timeout on the cli. Jeremy, although there were a couple of areas that needed to be handled, I needed to make one change that you should bless, in libsmb/clientgen.c. It was setting cli->smb_rw_error = smb_read_error; but smb_read_error is zero, so this had no effect. I'm now doing cli->smb_rw_error = READ_TIMEOUT; instead, and according to the OP, these (cumulative) changes (in a slightly different form) solve the problem. Please confirm this smb_rw_error change will have no other adverse effects that you can see. Derrell
| * r18009: Fixes bug 4026.Derrell Lipman2006-09-021-2/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This completes the work Jeremy began last week, disambiguating the meaning of c_time. (In POSIX terminology, c_time means "status Change time", not "create time".) All uses of c_time, a_time and m_time have now been replaced with change_time, access_time, and write_time, and when creation time is intended, create_time is used. Additionally, the capability of setting and retrieving the create time have been added to the smbc_setxattr() and smbc_getxattr() functions. An example of setting all four times can be seen with the program examples/libsmbclient/testacl with the following command line similar to: testacl -f -S "system.*:CREATE_TIME:1000000000,ACCESS_TIME:1000000060,WRITE_TIME:1000000120,CHANGE_TIME:1000000180" 'smb://server/share/testfile.txt' The -f option turns on the new mode which uses full time names in the attribute specification (e.g. ACCESS_TIME vs A_TIME).
| * r17487: Allocate some OID space for Samba4, so we don't trip on each other.Andrew Bartlett2006-08-111-0/+5
| | | | | | | | Andrew Bartlett
| * r17367: Reverting the ab code. Note I'm not saying thisJeremy Allison2006-08-011-82/+0
| | | | | | | | | | | | | | | | code is wrong or bad or anything, just that it needs to be discussed & reviewed on the samba-technical list before we add a platform-specific NFSv4 mapping. That way lies a lot of future pain :-). Jeremy.
| * r17358: Re-add JFS2 NFS4 ACLs support, move readme for it into AIX-specific ↵Alexander Bokovoy2006-08-011-0/+0
| | | | | | | | examples directory.
| * r17353: Add support for JFS2 NFS4/AIXC and GPFS acls based on NFSv4 ACLs.Alexander Bokovoy2006-08-011-0/+82
| |
| * r16998: patch from Paul Griffith <paulg@cs.yorku.ca> to fix compile of the ↵Gerald Carter2006-07-121-12/+12
| | | | | | | | test.c pdb file
| * r16948: Sync the exmaples code from trunk.Jeremy Allison2006-07-112-200/+200
| | | | | | | | Jeremy.
| * r16943: Add Jim's code.Jeremy Allison2006-07-1123-0/+2176
| | | | | | | | Jeremy.
| * r16752: remove the 'socket options' setting from the shipped default smb.confGerald Carter2006-07-011-7/+0
| |
| * r16719: Automatically chase referrals, support LDAP fast bind exended operationGünther Deschner2006-06-301-22/+122
| | | | | | | | | | | | and LDAP domain scope control. Guenther
| * r16550: Fix bug 3866. Thanks for the report!Derrell Lipman2006-06-271-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Although I've never met a computer or compiler that produced pointers to functions which are a different size than pointers to data, I suppose they probably exist. Assigning a pointer to a function is technically illegal in C anyway. Change casts of the option_value based on the option_name to use of variable argument lists. For binary compatibility, I've maintained but deprecated the old behavior of debug_stderr (which expected to be passed a NULL or non-NULL pointer) and added a new option debug_to_stderr which properly expects a boolean (int) parameter. Derrell
| * r16521: Fix different extended_dn handling for win2k/2k3 (thanks to FredericGünther Deschner2006-06-261-8/+8
| | | | | | | | | | | | Brin at Novell). Guenther
| * r15250: dump some more sids.Günther Deschner2006-04-251-0/+2
| | | | | | | | Guenther
* | r19772: syncing some non-source filesGerald Carter2006-11-185-27/+40
| |
* | r19745: For the fun of it, add an CLDAP client written in perl.Günther Deschner2006-11-161-0/+466
| | | | | | | | Guenther
* | r19517: Fix libsmbclient bug with Konqueror and NetApp filersJeremy Allison2006-10-311-0/+1
| | | | | | | | | | | | that need a leading / in OpenAndX calls. Should be in 3.0.23d (got missed). Jeremy.
* | r18697: Make sure that adssearch.pl does notGünther Deschner2006-09-191-22/+122
| | | | | | | | | | | | | | | | | | * chase referrals * use paged search control when using the LDAP change notify control for monitoring changes. Guenther
* | r16752: remove the 'socket options' setting from the shipped default smb.confGerald Carter2006-07-011-7/+0
| |
* | r16674: After removing each individual post-3.0.23rc3 change:Gerald Carter2006-06-291-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This pulls is what I considered safe fixes from SAMBA_3_0. This boiled down to either Klocwork fixes or obvious compiler warning fixes. I did not include any changes to fnuction signatures not the version change to the passdb API. Also pulled in the 3 nmbd fixes requested by Jeremy and the wildcard delete fix. This code will sit for a few days in the cooker and then become 3.0.23 if nothing blows up. I don't care how many more compile warning fixes people throw into SAMBA_3_0.
* | r15837: starting sync up for 3.0.23rc1 (in sync with SAMBA_3_0 r15822)Gerald Carter2006-05-231-0/+2
|/
* r15094: Replace ; by # where we have a comment and remove superfluous spaces atLars Müller2006-04-151-15/+15
| | | | the end of lines.
* r15058: Add sample pam_winbind.conf file.Günther Deschner2006-04-121-0/+26
| | | | Guenther
* r15018: Merge Volker's ipc/trans2/nttrans changes overJeremy Allison2006-04-103-1/+13
| | | | | | | | into 3.0. Also merge the new POSIX lock code - this is not enabled unless -DDEVELOPER is defined. This doesn't yet map onto underlying system POSIX locks. Updates vfs to allow lock queries. Jeremy.
* r14825: add support for max connections parameterGerald Carter2006-03-301-1/+2
|
* r14684: Remove obsolete file (belonged to pdb_xml)Jelmer Vernooij2006-03-231-46/+0
|
* r14664: r13868@cabra: derrell | 2006-03-22 17:04:30 -0500Derrell Lipman2006-03-222-3/+49
| | | | | | | | Implement enhancement request 3505. Two additional features are added here. There is now a method of saving an opaque user data handle in the smbc_ context, and there is now a way to request that the context be passed to the authentication function. See examples/libsmbclient/testbrowse.c for an example of using these features.
* r14451: In order to get pdb_ldap searching for SID_NAME_ALIASGerald Carter2006-03-151-1/+1
| | | | | | | | | | | | | | groups in the ${MACHINESID} and S_1-5-32 domains correctly, I had to add a substr search on sambaSID. * add substr matching rule to OpenLDAP schema (we need to update the other schema as will since this is a pretty important change). Sites will need to - install the new schema - add 'indea sambaSID sub' to slapd.conf - run slapindex * remove uses of SID_NAME_WKN_GRP in pdb_ldap.c
* r13711: * Correctly handle acb_info/acct_flags as uint32 not as uint16. Günther Deschner2006-02-272-2/+2
| | | | | | | | * Fix a couple of related parsing issues. * in the info3 reply in a samlogon, return the ACB-flags (instead of returning zero) Guenther
* r13677: patch from Max N. Boyarov <m.boyarov@sam-solutions.net>Gerald Carter2006-02-241-1/+1
| | | | Prevent div/0 when sysconf(_SC_NPROCESSORS_ONLN) fails.
* r13410: Dump a netbootGUID as a GUID.Günther Deschner2006-02-091-0/+1
| | | | Guenther
* r13366: Add popt to the include path for examples/VFS. The modules ↵Volker Lendecke2006-02-061-1/+1
| | | | | | | | | | | | themselves don't use that, but includes.h fails in environments where there's no system popt around. As the modules don't need that anyway, porting the check whether to use the system one or our own seems a bit overkill. Thanks to Michael Adam <ma@SerNet.DE>. Volker
* r13343: More sql cleanupVolker Lendecke2006-02-042-48/+0
|
* r13290: Adding Account Policy LDAP attributes for eDirectory schema.Günther Deschner2006-02-021-1/+52
| | | | Guenther
* r13187: IBM Tivoli Directory Server schema updates from John JanosikJim McDonough2006-01-272-1/+22
| | | | <jpjanosi@us.ibm.com>
* r12852: r12150@cabra: derrell | 2006-01-11 13:21:14 -0500Derrell Lipman2006-01-111-30/+15
| | | | Although RTLD_NEXT was not working properly a number of years ago, it seems to be now. Replace dlopen(/lib/libc...) with direct use of RTLD_NEXT
* r12839: - apply changes from svn r4963 also for VFS configure - KRB5_CONFIG ↵Volker Lendecke2006-01-111-4/+4
| | | | | | | | | | should not be used - rename it to KRB5CONFIG Thanks to Björn Jacke <bj@sernet.de> Volker