vfs: Make function pointer names consistent. They all end in _fn
[Samba/gebeck_regimport.git] / source3 / rpcclient / cmd_shutdown.c
blob8db09fef2df37858bb70e1d73a62c4bcca6f7800
1 /*
2 Unix SMB/CIFS implementation.
3 NT Domain Authentication SMB / MSRPC client
4 Copyright (C) Andrew Tridgell 1994-1997,
5 Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
6 Copyright (C) Simo Sorce 2001,
7 Copyright (C) Jim McDonough (jmcd@us.ibm.com) 2003.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
24 #include "rpcclient.h"
26 #if 0 /* don't uncomment this unless you remove the getopt() calls */
27 /* use net rpc shutdown instead */
29 /****************************************************************************
30 nt shutdown init
31 ****************************************************************************/
32 static NTSTATUS cmd_shutdown_init(struct cli_state *cli, TALLOC_CTX *mem_ctx,
33 int argc, const char **argv)
35 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
36 fstring msg;
37 uint32 timeout = 20;
38 bool force = False;
39 bool reboot = False;
40 int opt;
42 *msg = 0;
43 optind = 0; /* TODO: test if this hack works on other systems too --simo */
45 while ((opt = getopt(argc, argv, "m:t:rf")) != EOF)
47 /*fprintf (stderr, "[%s]\n", argv[argc-1]);*/
49 switch (opt)
51 case 'm':
52 fstrcpy(msg, optarg);
53 /*fprintf (stderr, "[%s|%s]\n", optarg, msg);*/
54 break;
56 case 't':
57 timeout = atoi(optarg);
58 /*fprintf (stderr, "[%s|%d]\n", optarg, timeout);*/
59 break;
61 case 'r':
62 reboot = True;
63 break;
65 case 'f':
66 force = True;
67 break;
72 /* create an entry */
73 result = cli_shutdown_init(cli, mem_ctx, msg, timeout, reboot, force);
75 if (NT_STATUS_IS_OK(result))
76 DEBUG(5,("cmd_shutdown_init: query succeeded\n"));
77 else
78 DEBUG(5,("cmd_shutdown_init: query failed\n"));
80 return result;
83 /****************************************************************************
84 abort a shutdown
85 ****************************************************************************/
86 static NTSTATUS cmd_shutdown_abort(struct cli_state *cli,
87 TALLOC_CTX *mem_ctx, int argc,
88 const char **argv)
90 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
92 result = cli_shutdown_abort(cli, mem_ctx);
94 if (NT_STATUS_IS_OK(result))
95 DEBUG(5,("cmd_shutdown_abort: query succeeded\n"));
96 else
97 DEBUG(5,("cmd_shutdown_abort: query failed\n"));
99 return result;
101 #endif
104 /* List of commands exported by this module */
105 struct cmd_set shutdown_commands[] = {
107 { "SHUTDOWN" },
109 #if 0
110 { "shutdowninit", RPC_RTYPE_NTSTATUS, cmd_shutdown_init, NULL, &ndr_table_initshutdown.syntax_id, "Remote Shutdown (over shutdown pipe)",
111 "syntax: shutdown [-m message] [-t timeout] [-r] [-h] [-f] (-r == reboot, -h == halt, -f == force)" },
113 { "shutdownabort", RPC_RTYPE_NTSTATUS, cmd_shutdown_abort, NULL, &ndr_table_initshutdown.syntax_id, "Abort Shutdown (over shutdown pipe)",
114 "syntax: shutdownabort" },
115 #endif
116 { NULL }