40771d2fb93a354111e62f43676c786df4745778
[samba.git] / source / rpc_server / srv_wkssvc_nt.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                                        2001.
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 /* This is the implementation of the wks interface. */
26
27 #include "includes.h"
28
29 extern int DEBUGLEVEL;
30 extern pstring global_myname;
31
32 /*******************************************************************
33  create_wks_info_100
34  ********************************************************************/
35
36 static void create_wks_info_100(WKS_INFO_100 *inf)
37 {
38         pstring my_name;
39         pstring domain;
40
41         DEBUG(5,("create_wks_info_100: %d\n", __LINE__));
42
43         pstrcpy (my_name, global_myname);
44         strupper(my_name);
45
46         pstrcpy (domain, lp_workgroup());
47         strupper(domain);
48
49         init_wks_info_100(inf,
50                           0x000001f4, /* platform id info */
51                           lp_major_announce_version(),
52                           lp_minor_announce_version(),
53                           my_name, unix_to_dos(domain,False));
54 }
55
56 /*******************************************************************
57  wks_reply_query_info
58  
59  only supports info level 100 at the moment.
60
61  ********************************************************************/
62
63 uint32 _wks_query_info(pipes_struct *p, WKS_Q_QUERY_INFO *q_u, WKS_R_QUERY_INFO *r_u)
64 {
65         WKS_INFO_100 *wks100 = NULL;
66
67         DEBUG(5,("_wks_query_info: %d\n", __LINE__));
68
69         wks100 = (WKS_INFO_100 *)talloc_zero(p->mem_ctx, sizeof(WKS_INFO_100));
70
71         if (!wks100)
72                 return NT_STATUS_NO_MEMORY;
73
74         create_wks_info_100(wks100);
75         init_wks_r_query_info(r_u, q_u->switch_value, wks100, NT_STATUS_NOPROBLEMO);
76
77         DEBUG(5,("_wks_query_info: %d\n", __LINE__));
78
79         return r_u->status;
80 }