diff options
author | Günther Deschner <gd@samba.org> | 2008-02-17 23:41:31 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-17 23:45:02 +0100 |
commit | a2e6727ff7d75b50a33c4186f48477ca35b3fbb9 (patch) | |
tree | c2e7b909a262a414a3fdeccb352b2fc91a0e5235 /source | |
parent | 6f396608bda65c98dfbb13f6e8661a8246c649a2 (diff) | |
download | samba-a2e6727ff7d75b50a33c4186f48477ca35b3fbb9.tar.gz samba-a2e6727ff7d75b50a33c4186f48477ca35b3fbb9.tar.xz samba-a2e6727ff7d75b50a33c4186f48477ca35b3fbb9.zip |
Add ValidateDeviceInstance command to rpcclient.
Guenther
Diffstat (limited to 'source')
-rw-r--r-- | source/rpcclient/cmd_ntsvcs.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/source/rpcclient/cmd_ntsvcs.c b/source/rpcclient/cmd_ntsvcs.c index a595948c359..f7648061c29 100644 --- a/source/rpcclient/cmd_ntsvcs.c +++ b/source/rpcclient/cmd_ntsvcs.c @@ -43,9 +43,42 @@ static WERROR cmd_ntsvcs_get_version(struct rpc_pipe_client *cli, return werr; } +static WERROR cmd_ntsvcs_validate_dev_inst(struct rpc_pipe_client *cli, + TALLOC_CTX *mem_ctx, + int argc, + const char **argv) +{ + NTSTATUS status; + WERROR werr; + const char *devicepath = NULL; + uint32_t flags = 0; + + if (argc < 2 || argc > 3) { + printf("usage: %s [devicepath] <flags>\n", argv[0]); + return WERR_OK; + } + + devicepath = argv[1]; + + if (argc >= 3) { + flags = atoi(argv[2]); + } + + status = rpccli_PNP_ValidateDeviceInstance(cli, mem_ctx, + devicepath, + flags, + &werr); + if (!NT_STATUS_IS_OK(status)) { + return ntstatus_to_werror(status); + } + + return werr; +} + struct cmd_set ntsvcs_commands[] = { { "NTSVCS" }, { "ntsvcs_getversion", RPC_RTYPE_WERROR, NULL, cmd_ntsvcs_get_version, PI_NTSVCS, NULL, "Query NTSVCS version", "" }, + { "ntsvcs_validatedevinst", RPC_RTYPE_WERROR, NULL, cmd_ntsvcs_validate_dev_inst, PI_NTSVCS, NULL, "Query NTSVCS device instance", "" }, { NULL } }; |