summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* docs-xml/vfs_gpfs: document 'gpfs:refuse_dacl_protected'Stefan Metzmacher2010-08-301-0/+31
| | | | metze
* docs-xml/vfs_gpfs: document 'gpfs:merge_writeappend'Stefan Metzmacher2010-08-301-0/+20
| | | | metze
* docs-xml/vfs_gpfs: document 'gpfs:winattr'Stefan Metzmacher2010-08-301-0/+22
| | | | metze
* docs-xml/vfs_gpfs: document 'gpfs:getrealfilename'Stefan Metzmacher2010-08-301-0/+21
| | | | metze
* docs-xml/vfs_gpfs: document 'gpfs:leases'Stefan Metzmacher2010-08-301-0/+24
| | | | metze
* docs-xml/vfs_gpfs: document 'gpfs:sharemodes'Stefan Metzmacher2010-08-301-0/+22
| | | | metze
* s4-drs-test: Skip a check that may possibly failKamen Mazdrashki2010-08-301-1/+7
| | | | | | | | This check may fail due to automatic replication between DCs during the test execution. Ideally we should block automatic replications (somehow) during this test. But until then, we need just to skip this check, it is not *that* important anyway
* s4-util: Print more informative error messages in 'net drs replicate'Kamen Mazdrashki2010-08-301-4/+13
|
* s4-drs-test: Use dns hostnames to run 'net drs replicate' commandKamen Mazdrashki2010-08-301-5/+5
|
* librpc/ndr: correctly implement ndr_charset_length()Stefan Metzmacher2010-08-301-2/+14
| | | | | | Before we ignored the charset type. metze
* s3: Fix an uninitialized variableVolker Lendecke2010-08-291-1/+1
|
* s3: Fix the build without clusterVolker Lendecke2010-08-291-0/+4
|
* s3: Remove smbd_server_fd()Volker Lendecke2010-08-296-35/+19
| | | | | | | | | This breaks the perfcol_onefs() build. Tim, Steve, this use of smbd_server_fd is replacable by calls into substitute.c. I don't have a onefs environment around to build a fix, so I've decided to insert an #error, making it not compile. The fix should be pretty obvious, you can get the socket data via "%I" and "%i" substitutions.
* s3: Remove two uses of smbd_server_fd()Volker Lendecke2010-08-292-2/+2
| | | | | Actually, this is a bit cheating. But those two files depend on smbd_server_conn anyway, it does not make things worse.
* s3: Remove smbd_server_fd() from srv_netlog_ntVolker Lendecke2010-08-291-3/+2
| | | | | This is not actually used. If it was to be activated, we'd have to pass in a pipes_struct.
* s3: Remove smbd_server_fd() from smbd_register_ipsVolker Lendecke2010-08-291-3/+4
|
* s3: Lift smbd_server_fd() from msg_release_ip()Volker Lendecke2010-08-291-4/+4
|
* s3: Lift smbd_server_fd() from release_ip()Volker Lendecke2010-08-291-11/+27
|
* s3: Remove a use of smbd_server_fd() in smbd main()Volker Lendecke2010-08-291-2/+1
| | | | | The effect this might have is that we set the socket options a bit later in inetd mode.
* s3: Pass sconn to check_reloadVolker Lendecke2010-08-291-4/+4
| | | | This removes a use of smbd_server_fd()
* s3: Pass sconn instead of msg_ctx to housekeeping_fnVolker Lendecke2010-08-291-6/+5
|
* s3: Set the client_id in substitute.c onceVolker Lendecke2010-08-293-12/+40
| | | | | This never changes during a client connection's life, so we can set it once.
* s3: Remove some uses of smbd_server_fd()Volker Lendecke2010-08-291-2/+2
| | | | | The change in behaviour is that we don't detect "socket option" changes anymore when printers are added or removed.
* s3: Remove a use of smbd_server_fdVolker Lendecke2010-08-291-1/+1
| | | | | This disables different socket options per user for ntlmssp authentiation, a change in behaviour which is exotic enough I believe.
* s4-kcc: Notify dreplsrv that Topology has changedKamen Mazdrashki2010-08-281-0/+29
|
* s4-dreplsrv: Implement irpc stub to be used to force dreplsrv to update ↵Kamen Mazdrashki2010-08-282-0/+31
| | | | | | | | | internal cache This IRPC calls is to be used whenever repsFrom/repsTo are changed by administrative tool or KCC (i.e. Topology changes). At present, only KCC may change topology.
* s4-dreplsrv: Move partition cache update before scheduling another set of ↵Kamen Mazdrashki2010-08-281-3/+7
| | | | replications
* s4-testenv: Synchronize DCs after 'net vampire'Kamen Mazdrashki2010-08-281-0/+24
| | | | | | During 'net vampire', vampired DC adds information in its own database, se we need to force replicate vampired_dc to the first DC to be sure everything is in sync prior starting tests
* s4-kcc: Assert when unexpected repsFromToBlob version is passedKamen Mazdrashki2010-08-281-2/+4
| | | | | | | At present we only support v1 structures (Win2k3 and earlier), so it is good to make it obvious. In case we start supporting v2 we will be able to notice this function should be refactored right away
* s3: Remove an unused macroVolker Lendecke2010-08-281-2/+0
|
* s3: Remove some references to smbd_server_fd()Volker Lendecke2010-08-281-5/+7
|
* s3: Fix a (highly unlikly) memleak in set_local_machine_name()Volker Lendecke2010-08-281-4/+4
|
* s3: Fix some DEBUGsVolker Lendecke2010-08-281-2/+2
|
* s3: Remove smbd_server_fd() from set_local_machine_name()Volker Lendecke2010-08-282-15/+9
|
* s3: Fix a typoVolker Lendecke2010-08-281-1/+1
|
* s3: Remove the dependency of g_lock on procid_selfVolker Lendecke2010-08-284-12/+16
| | | | procid_self() references global vars, don't depend on them unnecessarily
* s3: Remove smbd_server_conn() from check_unix_securityVolker Lendecke2010-08-281-7/+2
|
* s3: Lift smbd_server_fd() from pass_check()Volker Lendecke2010-08-284-9/+19
|
* s3: Lift smbd_server_fd() from password_check()Volker Lendecke2010-08-281-11/+13
|
* s3: Fix some nonempty blank linesVolker Lendecke2010-08-281-15/+15
|
* s3: Fix smb_pam_passcheckVolker Lendecke2010-08-282-4/+4
|
* pidl:Samba4/NDR/Client: support argument based stubs for [in,out,string]Stefan Metzmacher2010-08-281-2/+17
| | | | metze
* pidl:NDR: [in,out,string] doesn't need to pointersStefan Metzmacher2010-08-281-1/+1
| | | | metze
* pidl:Samba4/NDR/Client: correctly copy [out,charset()] buffersStefan Metzmacher2010-08-281-20/+62
| | | | | | | | If the conversion from CH_UTF16 to CH_UNIX uses multi-byte characters in CH_UNIX, we should not silently truncate the string, but return an error. metze
* pidl:Samba4/NDR/Client: fix skip reason for unsized arraysStefan Metzmacher2010-08-281-1/+1
| | | | metze
* selftest/Subunit.pm: fix perl warningsStefan Metzmacher2010-08-281-1/+1
| | | | | | Argument "\n" isn't numeric in numeric ne (!=) at selftest/Subunit.pm line 136 metze
* s3: Those functions are no macros anymore :-)Volker Lendecke2010-08-281-4/+0
|
* lib/util: remove implicit discard_const_p() from SAFE_FREE()Stefan Metzmacher2010-08-281-1/+1
| | | | | | | | This should fix a lot of warnings on IRIX. If callers know what they're doing they can use discard_const_p() on their own. metze
* s3:smbd: s/sa_len/sa_socklen , because sa_len is a macro on IRIXStefan Metzmacher2010-08-281-7/+7
| | | | metze
* Revert "lib/tsocket: sa_socklen is a macro on irix, so better use sasocklen"Stefan Metzmacher2010-08-283-39/+39
| | | | | | | | This reverts commit 3d4fb698660381e650d7caeb5b7cff12847c0fb8. This was wrong... The problem was in the caller, sa_len is a macro on irix metze