3 * Unix SMB/Netbios implementation.
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.
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.
27 #include "rpc_parse.h"
30 extern int DEBUGLEVEL
;
31 extern pstring global_myname
;
34 /*******************************************************************
36 ********************************************************************/
37 static void create_wks_info_100(WKS_INFO_100
*inf
)
42 DEBUG(5,("create_wks_info_100: %d\n", __LINE__
));
44 pstrcpy (my_name
, global_myname
);
47 pstrcpy (domain
, lp_workgroup());
50 make_wks_info_100(inf
,
51 0x000001f4, /* platform id info */
52 lp_major_announce_version(),
53 lp_minor_announce_version(),
57 /*******************************************************************
60 only supports info level 100 at the moment.
61 ********************************************************************/
62 uint32
_wks_query_info( const UNISTR2
*srv_name
, uint16 switch_value
,
69 create_wks_info_100(wks100
);
70 return NT_STATUS_NOPROBLEMO
;
73 return NT_STATUS_INVALID_INFO_CLASS
;