2 Unix SMB/CIFS implementation.
5 Copyright (C) Andrew Tridgell 1992-1998,
6 Copyright (C) Luke Kenneth Casson Leighton 1996-1998,
7 Copyright (C) Paul Ashton 1997-1998.
8 Copyright (C) Jeremy Allison 1999.
9 Copyright (C) Simo Sorce 2001
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 /* Shutdown a server */
30 NTSTATUS
cli_reg_shutdown(struct cli_state
* cli
, TALLOC_CTX
*mem_ctx
,
31 const char *msg
, uint32 timeout
, BOOL do_reboot
,
38 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
40 if (msg
== NULL
) return NT_STATUS_INVALID_PARAMETER
;
45 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
46 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
48 /* Marshall data and send request */
50 init_reg_q_shutdown(&q_s
, msg
, timeout
, do_reboot
, force
);
52 if (!reg_io_q_shutdown("", &q_s
, &qbuf
, 0) ||
53 !rpc_api_pipe_req(cli
, REG_SHUTDOWN
, &qbuf
, &rbuf
))
56 /* Unmarshall response */
58 if(reg_io_r_shutdown("", &r_s
, &rbuf
, 0))
69 /* Abort a server shutdown */
71 NTSTATUS
cli_reg_abort_shutdown(struct cli_state
* cli
, TALLOC_CTX
*mem_ctx
)
75 REG_Q_ABORT_SHUTDOWN q_s
;
76 REG_R_ABORT_SHUTDOWN r_s
;
77 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
82 prs_init(&qbuf
, MAX_PDU_FRAG_LEN
, mem_ctx
, MARSHALL
);
83 prs_init(&rbuf
, 0, mem_ctx
, UNMARSHALL
);
85 /* Marshall data and send request */
87 init_reg_q_abort_shutdown(&q_s
);
89 if (!reg_io_q_abort_shutdown("", &q_s
, &qbuf
, 0) ||
90 !rpc_api_pipe_req(cli
, REG_ABORT_SHUTDOWN
, &qbuf
, &rbuf
))
93 /* Unmarshall response */
95 if (reg_io_r_abort_shutdown("", &r_s
, &rbuf
, 0))
100 prs_mem_free(&qbuf
);