Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-05-28 | s3: Use cli_connect_nb in remote_password_change | Volker Lendecke | 1 | -31/+2 | |
2011-05-28 | s3: Add called name_type param to cli_connect_nb | Volker Lendecke | 2 | -4/+3 | |
2011-05-28 | s3: Fix a type-punned warning | Volker Lendecke | 1 | -1/+2 | |
2011-05-28 | s3: Fix some nonemtpy blank lines | Volker Lendecke | 1 | -3/+3 | |
2011-05-28 | s3: Fix smbsock_connect | Volker Lendecke | 1 | -1/+1 | |
If all connection attempts fail, return immediately. Plain bug. | |||||
2011-05-28 | s3: Use cli_connect_nb in cli_start_connection | Volker Lendecke | 1 | -47/+4 | |
2011-05-28 | s3: Add cli_connect_nb | Volker Lendecke | 2 | -0/+136 | |
This builds up a cli_state until after the netbios session setup. It makes use of smbsock_connect, so it connects to 139 and 445 simultaneously. This improves the connection to Windows 2008 which does not listen on *SMBSERVER anymore. | |||||
2011-05-23 | s3: Remove unused cli_get_nt_error | Volker Lendecke | 2 | -18/+0 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Mon May 23 16:54:21 CEST 2011 on sn-devel-104 | |||||
2011-05-23 | s3: Remove unused cli_set_nt_error | Volker Lendecke | 2 | -10/+0 | |
2011-05-23 | s3: Remove unused cli_reset_error | Volker Lendecke | 2 | -13/+0 | |
2011-05-23 | s3: Remove a reference to cli->inbuf | Volker Lendecke | 1 | -1/+1 | |
This is only used for utf16 alignment calculations, "rdata" is aligned the same way as cli->inbuf is. | |||||
2011-05-23 | s3: Remove two false references to cli->inbuf | Volker Lendecke | 1 | -2/+2 | |
2011-05-23 | s3: Fix a leftover from fstring removal in cli_state | Volker Lendecke | 1 | -4/+7 | |
Jeremy, please check! | |||||
2011-05-23 | s3: Remove unused cli_[en|de]crypt_message | Volker Lendecke | 2 | -45/+0 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Mon May 23 12:15:33 CEST 2011 on sn-devel-104 | |||||
2011-05-23 | s3: Directly call common_encrypt_buffer in cli_smb_req_iov_send | Volker Lendecke | 1 | -2/+2 | |
2011-05-22 | s3: Remove cli_send/receive_smb | Volker Lendecke | 2 | -284/+0 | |
A moment of silence is due here, R.I.P. Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sun May 22 22:17:12 CEST 2011 on sn-devel-104 | |||||
2011-05-21 | s3: Remove clistr_align_out | Volker Lendecke | 2 | -6/+0 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sat May 21 23:31:12 CEST 2011 on sn-devel-104 | |||||
2011-05-21 | s3: Remove unused cli_setup_bcc | Volker Lendecke | 2 | -10/+0 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sat May 21 21:24:13 CEST 2011 on sn-devel-104 | |||||
2011-05-21 | Patch for bug #8156 - net ads join fails to use the user's kerberos ticket. | Jeremy Allison | 1 | -10/+27 | |
If kerberos_get_realm_from_hostname() or kerberos_get_default_realm_from_ccache() fails due to a misconfigured krb5.conf, try the "realm =" from smb.conf as a fallcback before going back to NTLMSSP (which we'll do anyway). Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Sat May 21 00:58:09 CEST 2011 on sn-devel-104 | |||||
2011-05-20 | The "workgroup" parameter is not used at all in ↵ | Jeremy Allison | 1 | -7/+4 | |
cli_session_setup_kerberos(). Remove it. | |||||
2011-05-20 | s3: Remove unused cli_setup_packet() | Volker Lendecke | 2 | -6/+0 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Fri May 20 10:51:36 CEST 2011 on sn-devel-104 | |||||
2011-05-19 | s3: Do central cli_set_error | Volker Lendecke | 9 | -189/+2 | |
2011-05-19 | s3: Remove the use of cli->inbuf/outbuf from cli_session_request | Volker Lendecke | 1 | -45/+53 | |
2011-05-19 | s3: Add sync read_smb | Volker Lendecke | 2 | -0/+25 | |
2011-05-19 | s3: Make read_smb_send/recv public | Volker Lendecke | 3 | -87/+144 | |
2011-05-18 | s3-lib Replace StrnCaseCmp() with strncasecmp_m() | Andrew Bartlett | 1 | -37/+37 | |
strncasecmp_m() never needs to call to talloc, and via next_codepoint() still has an ASCII fast-path bypassing iconv() calls. Andrew Bartlett | |||||
2011-05-18 | s3-lib Replace StrCaseCmp() with strcasecmp_m() | Andrew Bartlett | 1 | -60/+60 | |
strcasecmp_m() never needs to call to talloc, and via next_codepoint() still has an ASCII fast-path bypassing iconv() calls. Andrew Bartlett | |||||
2011-05-18 | s3-libsmb/passchange.c: Fix cli_errstr() usage (part of bug #7864) | Björn Baumbach | 1 | -8/+9 | |
Convert cli_errstr() to nt_errstr() Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2011-05-16 | s3:libsmb convert user-specified domain to uppercase | Christian Ambach | 1 | -0/+1 | |
with client ntlmv2 auth = yes, there is a small difference between using smbclient -U user\domain and smbclient -U user -W domain if domain is provided in lowercase using -W will uppercase the given parameter, while picking the domain name from -U will not convert it to uppercase and this leads to failing NTLMv2 authentication with this patch, there is no difference between smbclient -U domain\user and smbclient -U user -W domain any more Autobuild-User: Christian Ambach <ambi@samba.org> Autobuild-Date: Mon May 16 11:42:55 CEST 2011 on sn-devel-104 | |||||
2011-05-14 | s3: Make&use set_socket_addr_v4 | Volker Lendecke | 1 | -12/+14 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sat May 14 18:57:57 CEST 2011 on sn-devel-104 | |||||
2011-05-14 | s3: Paranoia in smbsock_connect_state_destructor | Volker Lendecke | 1 | -0/+1 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sat May 14 14:19:01 CEST 2011 on sn-devel-104 | |||||
2011-05-10 | s3: Use tevent_req_ntstatus properly in a few places | Volker Lendecke | 1 | -58/+29 | |
2011-05-10 | async_smb.c: convert cli->timeout properly | Rusty Russell | 1 | -1/+2 | |
I have a test failure on my 32-bit Ubuntu system, in that samba3.smbtorture_s3.plain(s3dc).LOCK9 immediately times out (rather than waiting 5 seconds for the child). Debugging revealed this code: timeout is in ms and is set to > 1000 in various places. The code dates from 2002, and other perturbations didn't reveal why it breaks now, but fix it anyway. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Autobuild-User: Rusty Russell <rusty@rustcorp.com.au> Autobuild-Date: Tue May 10 12:09:07 CEST 2011 on sn-devel-104 | |||||
2011-04-19 | gencache: don't use CLEAR_IF_FIRST as fallback. | Rusty Russell | 1 | -10/+3 | |
CLEAR_IF_FIRST only works if *all* openers use that flag. So just truncate the file: it's racy, but that's what we're doing anyway. We'd really need a TDB_OPENCHECK_OR_CLEAR flag to do this properly (or in TDB2, a open hook at the right point). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> | |||||
2011-05-07 | s3: Fix including libsmb/proto.h without prior ads.h | Volker Lendecke | 1 | -0/+2 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sat May 7 11:38:11 CEST 2011 on sn-devel-104 | |||||
2011-05-06 | s3-includes: no need to globally include libads/ads_status.h. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2011-05-06 | s3-includes: finally only include client.h when libsmb is used. | Günther Deschner | 3 | -0/+4 | |
Guenther | |||||
2011-05-06 | s3-libsmb: move protos to libsmb/proto.h | Günther Deschner | 35 | -0/+889 | |
Guenther | |||||
2011-05-06 | s3: only include tdb headers where needed. | Günther Deschner | 2 | -0/+2 | |
Guenther | |||||
2011-05-06 | libcli/smb Move cifs posix helper functions and headers in common | Andrew Bartlett | 1 | -94/+0 | |
unix_perms_to_wire() was a duplicate symbol in the top level build. Andrew Bartlett | |||||
2011-05-06 | libcli/util Move NTSTATUS table to the top level | Andrew Bartlett | 1 | -725/+4 | |
2011-05-06 | nterr: Add mem_ctx for return string from get_nt_error_c_code() | Andrew Bartlett | 1 | -4/+4 | |
It is clearer to avoid the implicit return on talloc_tos() Andrew Bartlett | |||||
2011-05-06 | libcli/util Merge ntstatus_to_dos() ntstatus_to_werror() to the top level | Andrew Bartlett | 1 | -1214/+0 | |
This takes the Samba4 version, with the NT_STATUS_IS_DOS() check. This will be used in smbd/error.c shortly. Andrew Bartlett | |||||
2011-05-06 | errors: Merge ntstatus -> DOS error table between Samba3 and Samba4. | Andrew Bartlett | 1 | -8/+9 | |
They are now identical Andrew Bartlett | |||||
2011-05-06 | More const fixes. Remove CONST_DISCARD. | Jeremy Allison | 1 | -1/+1 | |
2011-05-05 | More simple const fixes. | Jeremy Allison | 4 | -14/+14 | |
2011-05-05 | More const fixes for compiler warnings from the waf build. | Jeremy Allison | 10 | -77/+85 | |
2011-05-05 | Fix many const compiler warnings. | Jeremy Allison | 2 | -4/+4 | |
2011-05-05 | s3-libsmb: run minimal_includes.pl. | Günther Deschner | 2 | -2/+0 | |
Guenther | |||||
2011-05-04 | Add in bufflen limit when storing NetBIOS names. Remove safe_strcpy. | Jeremy Allison | 1 | -16/+32 | |