2 Unix SMB/CIFS implementation.
3 NT Domain Authentication SMB / MSRPC client
4 Copyright (C) Andrew Tridgell 1994-1997
5 Copyright (C) Luke Kenneth Casson Leighton 1996-1997
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 extern struct cli_state
*smb_cli
;
31 /****************************************************************************
32 workstation get info query
33 ****************************************************************************/
34 void cmd_wks_query_info(struct client_info
*info
)
39 uint32 info_level
= 100;
43 memset((char *)&ctr
, '\0', sizeof(ctr
));
45 fstrcpy(dest_wks
, "\\\\");
46 fstrcat(dest_wks
, info
->dest_host
);
49 if (next_token_nr(NULL
, tmp
, NULL
, sizeof(tmp
)))
51 info_level
= (uint32
)strtol(tmp
, (char**)NULL
, 10);
54 DEBUG(4,("cmd_wks_query_info: server:%s info level: %d\n",
55 dest_wks
, info_level
));
57 DEBUG(5, ("cmd_wks_query_info: smb_cli->fd:%d\n", smb_cli
->fd
));
59 /* open LSARPC session. */
60 res
= res
? cli_nt_session_open(smb_cli
, PI_WKSSVC
) : False
;
62 /* send info level: receive requested info. hopefully. */
63 res
= res
? do_wks_query_info(smb_cli
,
64 dest_wks
, info_level
, &ctr
) : False
;
66 /* close the session */
67 cli_nt_session_close(smb_cli
);
71 DEBUG(5,("cmd_wks_query_info: query succeeded\n"));
74 display_wks_info_100(out_hnd
, ACTION_HEADER
, &ctr
);
75 display_wks_info_100(out_hnd
, ACTION_ENUMERATE
, &ctr
);
76 display_wks_info_100(out_hnd
, ACTION_FOOTER
, &ctr
);
82 DEBUG(5,("cmd_wks_query_info: query failed\n"));