s3-netapi: implement NetShutdownInit_r and NetShutdownAbort_r.
authorGünther Deschner <gd@samba.org>
Wed, 13 May 2009 14:38:26 +0000 (16:38 +0200)
committerGünther Deschner <gd@samba.org>
Thu, 14 May 2009 12:18:26 +0000 (14:18 +0200)
Guenther

source3/lib/netapi/shutdown.c

index 70c0980a44962ed3412e00a9547d9c8af24878ca..f9eb93b125929103e441b3b82c880f7db6902f86 100644 (file)
 WERROR NetShutdownInit_r(struct libnetapi_ctx *ctx,
                         struct NetShutdownInit *r)
 {
-       return WERR_NOT_SUPPORTED;
+       WERROR werr;
+       NTSTATUS status;
+       struct rpc_pipe_client *pipe_cli = NULL;
+       struct lsa_StringLarge message;
+
+       werr = libnetapi_open_pipe(ctx, r->in.server_name,
+                                  &ndr_table_initshutdown.syntax_id,
+                                  &pipe_cli);
+       if (!W_ERROR_IS_OK(werr)) {
+               goto done;
+       }
+
+       init_lsa_StringLarge(&message, r->in.message);
+
+       status = rpccli_initshutdown_Init(pipe_cli, ctx,
+                                         NULL,
+                                         &message,
+                                         r->in.timeout,
+                                         r->in.force_apps,
+                                         r->in.do_reboot,
+                                         &werr);
+       if (!NT_STATUS_IS_OK(status)) {
+               werr = ntstatus_to_werror(status);
+               goto done;
+       }
+
+ done:
+       return werr;
 }
 
 /****************************************************************
@@ -48,7 +75,27 @@ WERROR NetShutdownInit_l(struct libnetapi_ctx *ctx,
 WERROR NetShutdownAbort_r(struct libnetapi_ctx *ctx,
                          struct NetShutdownAbort *r)
 {
-       return WERR_NOT_SUPPORTED;
+       WERROR werr;
+       NTSTATUS status;
+       struct rpc_pipe_client *pipe_cli = NULL;
+
+       werr = libnetapi_open_pipe(ctx, r->in.server_name,
+                                  &ndr_table_initshutdown.syntax_id,
+                                  &pipe_cli);
+       if (!W_ERROR_IS_OK(werr)) {
+               goto done;
+       }
+
+       status = rpccli_initshutdown_Abort(pipe_cli, ctx,
+                                          NULL,
+                                          &werr);
+       if (!NT_STATUS_IS_OK(status)) {
+               werr = ntstatus_to_werror(status);
+               goto done;
+       }
+
+ done:
+       return werr;
 }
 
 /****************************************************************