745542e65133212cb28545075dca5d78dc592da4
[ira/wip.git] / source3 / rpc_client / cli_wkssvc.c
1 /* 
2  *  Unix SMB/Netbios implementation.
3  *  Version 1.9.
4  *  RPC Pipe client / server routines
5  *  Copyright (C) Andrew Tridgell              1992-1997,
6  *  Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
7  *  Copyright (C) Paul Ashton                       1997.
8  *  Copyright (C) Jeremy Allison                    1999.
9  *  
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 2 of the License, or
13  *  (at your option) any later version.
14  *  
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *  
20  *  You should have received a copy of the GNU General Public License
21  *  along with this program; if not, write to the Free Software
22  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  */
24
25 #include "includes.h"
26
27 /****************************************************************************
28 do a WKS Open Policy
29 ****************************************************************************/
30 BOOL do_wks_query_info(struct cli_state *cli, 
31                         char *server_name, uint32 switch_value,
32                         WKS_INFO_100 *wks100)
33 {
34         prs_struct rbuf;
35         prs_struct buf; 
36         WKS_Q_QUERY_INFO q_o;
37         WKS_R_QUERY_INFO r_o;
38
39         if (server_name == 0 || wks100 == NULL)
40                 return False;
41
42         prs_init(&buf, MAX_PDU_FRAG_LEN, cli->mem_ctx, MARSHALL);
43         prs_init(&rbuf, 0, cli->mem_ctx, UNMARSHALL );
44
45         /* create and send a MSRPC command with api WKS_QUERY_INFO */
46
47         DEBUG(4,("WKS Query Info\n"));
48
49         /* store the parameters */
50         init_wks_q_query_info(&q_o, server_name, switch_value);
51
52         /* turn parameters into data stream */
53         if(!wks_io_q_query_info("", &q_o, &buf, 0)) {
54                 prs_mem_free(&buf);
55                 prs_mem_free(&rbuf);
56                 return False;
57         }
58
59         /* send the data on \PIPE\ */
60         if (!rpc_api_pipe_req(cli, WKS_QUERY_INFO, &buf, &rbuf)) {
61                 prs_mem_free(&buf);
62                 prs_mem_free(&rbuf);
63                 return False;
64         }
65
66         prs_mem_free(&buf);
67
68         r_o.wks100 = wks100;
69
70         if(!wks_io_r_query_info("", &r_o, &rbuf, 0)) {
71                 prs_mem_free(&rbuf);
72                 return False;
73         }
74
75         if (r_o.status != 0) {
76                 /* report error code */
77                 DEBUG(0,("WKS_R_QUERY_INFO: %s\n", get_nt_error_msg(r_o.status)));
78                 prs_mem_free(&rbuf);
79                 return False;
80         }
81
82         prs_mem_free(&rbuf);
83
84         return True;
85 }