summaryrefslogtreecommitdiffstats
path: root/source/rpcclient
Commit message (Collapse)AuthorAgeFilesLines
* rpcclient: Set the pid filed of the outgoing DsBindInfo to 0.Michael Adam2008-07-281-1/+1
| | | | | | | | This is for debugging and informational purposes only. The assignment is implementation specific. (WSPP docs, sec. 5.35). Michael
* Change occurrences of the u1 member of DsBindInfo* to pid after idl change.Michael Adam2008-07-221-1/+1
| | | | Michael
* rpcclient: make DsGetNCChanges work against w2k8 (add knowledge of DsBindInfo48)Michael Adam2008-07-221-0/+2
| | | | Michael
* Refactoring: rpcclient uses ndr_syntax_id instead of pipe_idxVolker Lendecke2008-07-2115-173/+177
|
* Refactoring: Change calling conventions for cli_rpc_pipe_open_schannelVolker Lendecke2008-07-201-5/+6
| | | | Pass in ndr_syntax_id instead of pipe_idx, return NTSTATUS
* Refactoring: Change calling conventions for cli_rpc_pipe_open_ntlmsspVolker Lendecke2008-07-201-14/+16
| | | | Pass in ndr_syntax_id instead of pipe_idx, return NTSTATUS
* Refactoring: Change calling conventions for cli_rpc_pipe_open_noauthVolker Lendecke2008-07-203-13/+23
| | | | Pass in ndr_syntax_id instead of pipe_idx, return NTSTATUS
* rpcclient: add ability to fetch single objects with dsgetncchanges commandMichael Adam2008-07-181-2/+18
| | | | | | | | call as "dsgetncchanges <object_dn> single" after calling "seal" Michael
* rpcclient: use level 5 or level 8 in dsgetncchanges command based on bind-info.Michael Adam2008-07-181-8/+26
| | | | Michael
* rpcclient: for testing, add dsgetncchanges command.Günther Deschner2008-07-171-0/+229
| | | | Guenther
* Fix a segfault in rpcclient adddriverVolker Lendecke2008-06-261-12/+13
| | | | (cherry picked from commit d4b5a9d67389578f531527b339f6feead62f082d)
* rpcclient: add samr chgpasswd command.Günther Deschner2008-06-251-0/+93
| | | | Guenther
* rename rpccli_samr_chgpasswd3 to rpccli_samr_chgpasswd_user3.Günther Deschner2008-06-251-6/+6
| | | | Guenther
* rename rpccli_samr_chgpasswd_user to rpccli_samr_chgpasswd_user2.Günther Deschner2008-06-251-1/+1
| | | | Guenther
* rpcclient: add more generic internal dscracknames call.Günther Deschner2008-06-171-26/+57
| | | | Guenther
* Fix typo.Karolin Seeger2008-06-171-12/+12
| | | | | | arguements -> arguments Karolin
* rpcclient: add more useful comments what sign/seal commands are doing.Günther Deschner2008-06-101-9/+19
| | | | Guenther
* rpcclient: add drsuapi dsgetdcinfo call.Günther Deschner2008-05-261-0/+161
| | | | Guenther
* rpcclient: call drsuapi_DsUnbind() when finished with DsCrackNames call.Günther Deschner2008-05-261-2/+8
| | | | Guenther
* rpcclient: simplify drsuapi dscracknames call slightly.Günther Deschner2008-05-261-15/+7
| | | | Guenther
* drsuapi: add very basic drsuapi rpcclient command set.Günther Deschner2008-05-242-0/+113
| | | | Guenther
* Revert "drsuapi: fix the build."Günther Deschner2008-05-242-113/+0
| | | | This reverts commit b2421c81164da2a5ea4bb2391e4f2c410938db42.
* drsuapi: fix the build.Günther Deschner2008-05-242-0/+113
| | | | Guenther
* Cleanup size_t return values in callers of convert_string_allocateTim Prouty2008-05-201-4/+3
| | | | | This patch is the second iteration of an inside-out conversion to cleanup functions in charcnv.c returning size_t == -1 to indicate failure.
* Fix client authentication with -P switch in client tools (Bug 5435).Günther Deschner2008-05-051-1/+14
| | | | Guenther
* rpcclient: fix another srv_name_slash.Günther Deschner2008-04-291-6/+1
| | | | Guenther
* Move user/domain from rpc_pipe_client to cli_pipe_auth_dataVolker Lendecke2008-04-251-19/+20
|
* Refactoring: Make cli_pipe_auth_data a pointer off rpc_pipe_clientVolker Lendecke2008-04-251-2/+4
|
* rpcclient: Add tiny fix for cmd_samr_get_dispinfo_idx().Günther Deschner2008-04-241-2/+3
| | | | Guenther
* rpcclient: Add getdispinfoidx command.Günther Deschner2008-04-221-0/+62
| | | | Guenther
* Remove the "pwd" struct from rpc_pipe_clientVolker Lendecke2008-04-211-8/+27
| | | | | The only user of this was decrypt_trustdom_secret, and this only needs the NT hash anyway.
* Introduce rpc_pipe_np_smb_conn()Volker Lendecke2008-04-202-3/+5
| | | | | This abstracts away all references to rpc_pipe_client->cli, the only reference is now in cli_pipe.c.
* Replace cli_rpc_pipe_close by a talloc destructor on rpc_pipe_structVolker Lendecke2008-04-202-5/+5
|
* Introduce rpccli_set_timeout()Volker Lendecke2008-04-203-7/+10
| | | | Reduce dependency on "cli" member of rpc_pipe_client struct
* Move srv_name_slash from cli_state to rpc_pipe_clientVolker Lendecke2008-04-201-1/+1
|
* Add "desthost" to rpc_pipe_clientVolker Lendecke2008-04-205-78/+70
| | | | This reduces the dependency on cli_state
* Fix lsa_QueryTrustedDomainInfo caller.Günther Deschner2008-04-081-2/+2
| | | | Guenther
* Fix lsa_TrustedDomainInfo callers.Günther Deschner2008-04-081-4/+4
| | | | Guenther
* Remove some dead code in rpcclient.Günther Deschner2008-04-041-23/+0
| | | | Guenther
* Move rpccli_try_samr_connects out of rpcclient.Günther Deschner2008-04-041-75/+78
| | | | Guenther
* Fix NETLOGON credential chain with Windows 2008 all over the place.Günther Deschner2008-04-021-1/+1
| | | | | | | | | | | In order to avoid receiving NT_STATUS_DOWNGRADE_DETECTED from a w2k8 netr_ServerAuthenticate2 reply, we need to start with the AD netlogon negotiate flags everywhere (not only when running in security=ads). Only for NT4 we need to do a downgrade to the returned negotiate flags. Tested with w2k8, w2ksp4, w2k3r2 and nt4sp6. Guenther
* Fix build of rpcclient.Günther Deschner2008-04-011-2/+2
| | | | Guenther
* Re-add support for the samr parameters string.Günther Deschner2008-03-311-1/+15
| | | | | | (dialin settings, terminal server settings, etc.) Guenther
* Add a talloc context parameter to current_timestring() to fix memleaks.Michael Adam2008-03-281-4/+8
| | | | | | | | | | | | | current_timestring used to return a string talloced to talloc_tos(). When called by DEBUG from a TALLOC_FREE, this produced messages "no talloc stackframe around, leaking memory". For example when used from net conf. This also adds a temporary talloc context to alloc_sub_basic(). For this purpose, the exit strategy is slightly altered: a common exit point is used for success and failure. Michael
* Add ntsvcs_getdevregprop command to rpcclient.Günther Deschner2008-03-261-0/+40
| | | | Guenther
* Fix Coverity ID 507Volker Lendecke2008-03-211-0/+2
|
* Add support for setting resume handle in netsessenum rpcclient command.Günther Deschner2008-03-211-3/+9
| | | | Guenther
* Allow to set or unset resume_handle in netconnenum in rpcclient.Günther Deschner2008-03-211-1/+3
| | | | Guenther
* Fix bug 5338 -- thanks to Yuya Katayama <yuya999@gmail.com>Volker Lendecke2008-03-191-1/+1
|
* Use existing srv_name_slash.Günther Deschner2008-03-121-3/+1
| | | | Guenther