updated the 3.0 branch from the head branch - ready for alpha18
[samba.git] / source3 / rpc_server / srv_wkssvc_nt.c
1 /* 
2  *  Unix SMB/CIFS implementation.
3  *  RPC Pipe client / server routines
4  *  Copyright (C) Andrew Tridgell              1992-1997,
5  *  Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
6  *  Copyright (C) Paul Ashton                       1997.
7  *  Copyright (C) Jeremy Allison                                        2001.
8  *  
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 2 of the License, or
12  *  (at your option) any later version.
13  *  
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.
18  *  
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23
24 /* This is the implementation of the wks interface. */
25
26 #include "includes.h"
27
28 #undef DBGC_CLASS
29 #define DBGC_CLASS DBGC_RPC_SRV
30
31 extern pstring global_myname;
32
33 /*******************************************************************
34  create_wks_info_100
35  ********************************************************************/
36
37 static void create_wks_info_100(WKS_INFO_100 *inf)
38 {
39         pstring my_name;
40         pstring domain;
41
42         DEBUG(5,("create_wks_info_100: %d\n", __LINE__));
43
44         pstrcpy (my_name, global_myname);
45         strupper(my_name);
46
47         pstrcpy (domain, lp_workgroup());
48         strupper(domain);
49
50         init_wks_info_100(inf,
51                           0x000001f4, /* platform id info */
52                           lp_major_announce_version(),
53                           lp_minor_announce_version(),
54                           my_name, domain);
55 }
56
57 /*******************************************************************
58  wks_reply_query_info
59  
60  only supports info level 100 at the moment.
61
62  ********************************************************************/
63
64 NTSTATUS _wks_query_info(pipes_struct *p, WKS_Q_QUERY_INFO *q_u, WKS_R_QUERY_INFO *r_u)
65 {
66         WKS_INFO_100 *wks100 = NULL;
67
68         DEBUG(5,("_wks_query_info: %d\n", __LINE__));
69
70         wks100 = (WKS_INFO_100 *)talloc_zero(p->mem_ctx, sizeof(WKS_INFO_100));
71
72         if (!wks100)
73                 return NT_STATUS_NO_MEMORY;
74
75         create_wks_info_100(wks100);
76         init_wks_r_query_info(r_u, q_u->switch_value, wks100, NT_STATUS_OK);
77
78         DEBUG(5,("_wks_query_info: %d\n", __LINE__));
79
80         return r_u->status;
81 }