diff options
author | Luke Leighton <lkcl@samba.org> | 1999-11-06 21:08:35 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-11-06 21:08:35 +0000 |
commit | 514be1cf738e913423488b9550522e3991d11360 (patch) | |
tree | 708072e47b3951b62dfc9df7affe1f8ba048caf3 /source3/rpcclient/cmd_spoolss.c | |
parent | 4dbd1c135ca286f59a5f692abd51a0c78f4cb6a0 (diff) | |
download | samba-514be1cf738e913423488b9550522e3991d11360.tar.gz samba-514be1cf738e913423488b9550522e3991d11360.tar.bz2 samba-514be1cf738e913423488b9550522e3991d11360.zip |
added command-completion printer enum code.
(This used to be commit 6947f8fac7d6d643a265fdcb56b2a390b9a9a1c0)
Diffstat (limited to 'source3/rpcclient/cmd_spoolss.c')
-rw-r--r-- | source3/rpcclient/cmd_spoolss.c | 52 |
1 files changed, 36 insertions, 16 deletions
diff --git a/source3/rpcclient/cmd_spoolss.c b/source3/rpcclient/cmd_spoolss.c index 257f32aa8b..469b5b1a72 100644 --- a/source3/rpcclient/cmd_spoolss.c +++ b/source3/rpcclient/cmd_spoolss.c @@ -40,41 +40,61 @@ extern int smb_tidx; /**************************************************************************** nt spoolss query ****************************************************************************/ -void cmd_spoolss_enum_printers(struct client_info *info) +BOOL msrpc_spoolss_enum_printers(struct cli_state *cli, + uint32 level, + uint32 *num, + void ***ctr, + PRINT_INFO_FN(fn)) { uint16 nt_pipe_fnum; fstring srv_name; - void **ctr = NULL; - uint32 num = 0; - uint32 level = 1; - BOOL res = True; fstrcpy(srv_name, "\\\\"); fstrcat(srv_name, smb_cli->desthost); strupper(srv_name); - DEBUG(5, ("cmd_spoolss_open_printer_ex: smb_cli->fd:%d\n", smb_cli->fd)); - /* open SPOOLSS session. */ - res = res ? cli_nt_session_open(smb_cli, PIPE_SPOOLSS, &nt_pipe_fnum) : False; + res = cli_nt_session_open(cli, PIPE_SPOOLSS, &nt_pipe_fnum); - res = res ? spoolss_enum_printers(smb_cli, nt_pipe_fnum, - 0x40, srv_name, level, &num, &ctr) : False; + res = res ? spoolss_enum_printers(cli, nt_pipe_fnum, + 0x40, srv_name, level, num, ctr) : False; /* close the session */ - cli_nt_session_close(smb_cli, nt_pipe_fnum); + cli_nt_session_close(cli, nt_pipe_fnum); - if (res) + if (res && fn != NULL) + { + fn(srv_name, level, *num, *ctr); + } + + return res; +} + +static void spool_print_info_ctr(const char* srv_name, uint32 level, + uint32 num, void **ctr) +{ + display_printer_info_ctr(out_hnd, ACTION_HEADER , level, num, ctr); + display_printer_info_ctr(out_hnd, ACTION_ENUMERATE, level, num, ctr); + display_printer_info_ctr(out_hnd, ACTION_FOOTER , level, num, ctr); +} + +/**************************************************************************** +nt spoolss query +****************************************************************************/ +void cmd_spoolss_enum_printers(struct client_info *info) +{ + void **ctr = NULL; + uint32 num = 0; + uint32 level = 1; + + if (msrpc_spoolss_enum_printers(smb_cli, level, &num, &ctr, + spool_print_info_ctr)) { DEBUG(5,("cmd_spoolss_enum_printer: query succeeded\n")); - display_printer_info_ctr(out_hnd, ACTION_HEADER , level, num, ctr); - display_printer_info_ctr(out_hnd, ACTION_ENUMERATE, level, num, ctr); - display_printer_info_ctr(out_hnd, ACTION_FOOTER , level, num, ctr); } else { - DEBUG(5,("cmd_spoolss_enum_printer: query failed\n")); report(out_hnd, "FAILED\n"); } |