Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-03-16 | s3: Fix Coverity ID 2231, REVERSE_INULL | Volker Lendecke | 1 | -2/+3 | |
No point in checking for !ctx after dereferencing it Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Mar 16 22:51:52 CET 2011 on sn-devel-104 | |||||
2011-02-28 | s3-rpc_client: Move client pipe functions to own header. | Andreas Schneider | 1 | -0/+1 | |
2010-09-21 | s3: Remove a global variable in bugfix for bug 7665 | Volker Lendecke | 1 | -7/+10 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2010-09-20 | s3-libnetapi: Fix Bug #7665, memory leak in netapi connection manager. | Günther Deschner | 1 | -30/+65 | |
Guenther | |||||
2010-08-05 | s3-popt: Only include popt-common.h when needed. | Andreas Schneider | 1 | -0/+1 | |
2010-01-24 | s3: add libnetapi_set_use_ccache() | Volker Lendecke | 1 | -0/+4 | |
2009-11-08 | Revert "s3: Make libnetapi_open_pipe take strings instead of a ↵ | Volker Lendecke | 1 | -8/+3 | |
ndr_interface_table" This reverts commit 5fc9d93408effe75abcd231c45cbc14656692ebe. | |||||
2009-11-08 | s3: Make libnetapi_open_pipe take strings instead of a ndr_interface_table | Volker Lendecke | 1 | -3/+8 | |
2009-11-07 | s3: get_pipe_name_from_iface -> get_pipe_name_from_syntax | Volker Lendecke | 1 | -1/+1 | |
2009-06-16 | s3-netapi: Fix Bug #6305. Correctly prompt for a password when a username ↵ | Günther Deschner | 1 | -1/+5 | |
was given. When no callback or wrapping has managed to get a password, prompt in the netapi connection manager for a password. Guenther | |||||
2009-03-26 | s3-libnetapi: fix creds in libnetapi_open_ipc_connection(). | Günther Deschner | 1 | -0/+5 | |
Jeremy, this broke with 8dd1faaa2992851f6852ba7ea4498445af5faadd. Not sure if other users broke as well with that change. Guenther | |||||
2009-03-17 | Remove the global "struct cm_cred_struct" and associated calls, make | Jeremy Allison | 1 | -16/+16 | |
callers pass in a struct user_auth_info * instead. This commit causes smbc_set_credentials() to print out a message telling callers to use smbc_set_credentials_with_fallback() instead, as smbc_set_credentials() has a broken API (no SMBCCTX * pointer). No more global variables used in the connection manager API for client dfs calls. Jeremy. | |||||
2009-03-12 | Remove the static "struct client_connection" mess which is part of | Jeremy Allison | 1 | -12/+16 | |
the problem that stops libsmbclient being thread safe. Subsidiary DFS connections are now hung off a list inside the cli_state struct. Much more to do in order to get libsmbclient to thread safety, but this is a good start. Jeremy. | |||||
2009-02-01 | cli_get_pipe_name_from_interface does not really need a talloc_ctx | Volker Lendecke | 1 | -1/+1 | |
2009-01-22 | Actually complete 3662c2b... | Volker Lendecke | 1 | -2/+1 | |
2009-01-18 | libnetapi_open_pipe does not need to return cli_state | Volker Lendecke | 1 | -2/+0 | |
The user session key is also available in rpccli->auth->user_session_key Guenther, please check! Thanks, Volker | |||||
2009-01-14 | Remove smbclient globals that bled into clidfs.c. Now we only have | Jeremy Allison | 1 | -1/+2 | |
the connections list and authentication structures to worry about. Jeremy | |||||
2009-01-14 | Fix build of netapi. | Jeremy Allison | 1 | -1/+2 | |
Jeremy. | |||||
2008-08-14 | netapi: make libnetapi_open_ipc_connection static. | Günther Deschner | 1 | -5/+15 | |
Guenther (cherry picked from commit 0259914f8ff04514a8395d8e1af61aadd50c5efb) (This used to be commit 7edc671cc1007ae216e7efdbcdb9cfa1e547dca5) | |||||
2008-07-30 | Fix uninitialized variables. | Jeremy Allison | 1 | -1/+1 | |
Jeremy. (This used to be commit 1db7e00a5400863fd5dbb81c1a4c6ea6092d0495) | |||||
2008-07-21 | Refactoring: libnetapi_open_pipe takes an interface instead of pipe_idx | Volker Lendecke | 1 | -39/+37 | |
(This used to be commit 726e56c72fdb685ab5eddefd2fd8b043dc38d6ad) | |||||
2008-07-20 | Refactoring: Change calling conventions for cli_rpc_pipe_open_noauth | Volker Lendecke | 1 | -2/+3 | |
Pass in ndr_syntax_id instead of pipe_idx, return NTSTATUS (This used to be commit 9abc9dc4dc13bd3e42f98eff64eacf24b51f5779) | |||||
2008-04-20 | Introduce rpc_pipe_np_smb_conn() | Volker Lendecke | 1 | -1/+1 | |
This abstracts away all references to rpc_pipe_client->cli, the only reference is now in cli_pipe.c. (This used to be commit c56e1c08cef107ff33a34346ceeca3475a102b19) | |||||
2008-04-20 | Remove the pipe_idx variable from rpc_pipe_client | Volker Lendecke | 1 | -1/+1 | |
(This used to be commit 4840febcd481563c3d9b2fabc1fe1b2ae5a76cf6) | |||||
2008-04-20 | Add "desthost" to rpc_pipe_client | Volker Lendecke | 1 | -1/+1 | |
This reduces the dependency on cli_state (This used to be commit 783afab9c891dd7bcb78895b2a639b6f3a0edf5b) | |||||
2008-04-13 | libnetapi: add libnetapi_set_use_kerberos | Günther Deschner | 1 | -2/+6 | |
Don't unconditionally set the kerberos flag for authentication. Guenther (This used to be commit 15bef5ae413adf278cccc0e547c4b8ccd180eca2) | |||||
2008-04-10 | Add libnetapi_open_pipe, inspired by the cli_cm_ interface. | Günther Deschner | 1 | -0/+110 | |
Guenther (This used to be commit 87d8fc338f6e6b48691bff3eeebfc00c5d408ff7) | |||||
2008-04-10 | Fix one missing netapi_private header. | Günther Deschner | 1 | -2/+2 | |
Guenther (This used to be commit d34c3e8ad2b21051162e2a9d65f773c486c43d8b) | |||||
2008-04-10 | Add very basic cli_cm_* based connection handler to libnetapi. | Günther Deschner | 1 | -0/+75 | |
Guenther (This used to be commit e9e46cfcbe25366121f680a6d81fe08c128bf00a) |