preparing for release of alpha.1.4
[Samba.git] / source / wkssvcd / srv_wkssvc_nt.c
blobdbcf2db902c7256f68a7e3f3cae4881f61158d7e
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.
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.
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.
26 #include "includes.h"
27 #include "rpc_parse.h"
28 #include "nterr.h"
30 extern int DEBUGLEVEL;
31 extern pstring global_myname;
34 /*******************************************************************
35 create_wks_info_100
36 ********************************************************************/
37 static void create_wks_info_100(WKS_INFO_100 *inf)
39 pstring my_name;
40 pstring domain;
42 DEBUG(5,("create_wks_info_100: %d\n", __LINE__));
44 pstrcpy (my_name, global_myname);
45 strupper(my_name);
47 pstrcpy (domain , lp_workgroup());
48 strupper(domain);
50 make_wks_info_100(inf,
51 0x000001f4, /* platform id info */
52 lp_major_announce_version(),
53 lp_minor_announce_version(),
54 my_name, domain);
57 /*******************************************************************
58 _wks_query_info
60 only supports info level 100 at the moment.
61 ********************************************************************/
62 uint32 _wks_query_info( const UNISTR2 *srv_name, uint16 switch_value,
63 WKS_INFO_100 *wks100)
65 switch (switch_value)
67 case 100:
69 create_wks_info_100(wks100);
70 return NT_STATUS_NOPROBLEMO;
73 return NT_STATUS_INVALID_INFO_CLASS;