an attempt to get the handling of fields in printer info structures
[sfrench/samba-autobuild/.git] / source / rpc_server / srv_wkssvc.c
1 #define OLD_NTDOMAIN 1
2 /* 
3  *  Unix SMB/Netbios implementation.
4  *  Version 1.9.
5  *  RPC Pipe client / server routines
6  *  Copyright (C) Andrew Tridgell              1992-1997,
7  *  Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
8  *  Copyright (C) Paul Ashton                       1997.
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 extern int DEBUGLEVEL;
28 extern pstring global_myname;
29
30 /*******************************************************************
31  create_wks_info_100
32  ********************************************************************/
33 static void create_wks_info_100(WKS_INFO_100 *inf)
34 {
35         pstring my_name;
36         pstring domain;
37
38         DEBUG(5,("create_wks_info_100: %d\n", __LINE__));
39
40         pstrcpy (my_name, global_myname);
41         strupper(my_name);
42
43         pstrcpy (domain , lp_workgroup());
44         strupper(domain);
45
46         init_wks_info_100(inf,
47                           0x000001f4, /* platform id info */
48                           lp_major_announce_version(),
49                           lp_minor_announce_version(),
50                           my_name, domain);
51 }
52
53 /*******************************************************************
54  wks_reply_query_info
55  
56  only supports info level 100 at the moment.
57
58  ********************************************************************/
59 static BOOL wks_reply_query_info(WKS_Q_QUERY_INFO *q_u,
60                                 prs_struct *rdata,
61                                 int status)
62 {
63         WKS_R_QUERY_INFO r_u;
64         WKS_INFO_100 wks100;
65
66         DEBUG(5,("wks_query_info: %d\n", __LINE__));
67
68         create_wks_info_100(&wks100);
69         init_wks_r_query_info(&r_u, q_u->switch_value, &wks100, status);
70
71         /* store the response in the SMB stream */
72         if(!wks_io_r_query_info("", &r_u, rdata, 0))
73                 return False;
74
75         DEBUG(5,("wks_query_info: %d\n", __LINE__));
76
77         return True;
78 }
79
80 /*******************************************************************
81  api_wks_query_info
82  ********************************************************************/
83 static BOOL api_wks_query_info(pipes_struct *p)
84 {
85         WKS_Q_QUERY_INFO q_u;
86         prs_struct *data = &p->in_data.data;
87         prs_struct *rdata = &p->out_data.rdata;
88
89         /* grab the net share enum */
90         if(!wks_io_q_query_info("", &q_u, data, 0))
91                 return False;
92
93         /* construct reply.  always indicate success */
94         if(!wks_reply_query_info(&q_u, rdata, 0x0))
95                 return False;
96
97         return True;
98 }
99
100
101 /*******************************************************************
102  \PIPE\wkssvc commands
103  ********************************************************************/
104 struct api_struct api_wks_cmds[] =
105 {
106         { "WKS_Q_QUERY_INFO", WKS_QUERY_INFO, api_wks_query_info },
107         { NULL             , 0            , NULL }
108 };
109
110 /*******************************************************************
111  receives a wkssvc pipe and responds.
112  ********************************************************************/
113 BOOL api_wkssvc_rpc(pipes_struct *p)
114 {
115         return api_rpcTNP(p, "api_wkssvc_rpc", api_wks_cmds);
116 }
117
118 #undef OLD_NTDOMAIN