• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/testsuite/libsmbclient/src/list_print_jobs/
1#include <stdio.h>
2#include <unistd.h>
3#include <stdlib.h>
4#include <string.h>
5#include <errno.h>
6#include <libsmbclient.h>
7
8#define	MAX_BUFF_SIZE	255
9char g_workgroup[MAX_BUFF_SIZE];
10char g_username[MAX_BUFF_SIZE];
11char g_password[MAX_BUFF_SIZE];
12char g_server[MAX_BUFF_SIZE];
13char g_share[MAX_BUFF_SIZE];
14
15char g_print_user[MAX_BUFF_SIZE];
16char g_print_name[MAX_BUFF_SIZE];
17unsigned int g_print_id;
18unsigned int g_print_priority;
19unsigned int g_print_size;
20
21int call_back_flag;
22int print_queue_empty;
23
24void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen,
25		char *username, int unmaxlen, char *password, int pwmaxlen)
26{
27
28	strncpy(workgroup, g_workgroup, wgmaxlen - 1);
29
30	strncpy(username, g_username, unmaxlen - 1);
31
32	strncpy(password, g_password, pwmaxlen - 1);
33
34	strcpy(g_server, server);
35	strcpy(g_share, share);
36
37}
38
39void print_list_fn_2(struct print_job_info *pji)
40{
41	print_queue_empty = 0;
42	g_print_id = pji->id;
43}
44
45void print_list_fn(struct print_job_info *pji)
46{
47
48	call_back_flag = 1;
49
50	g_print_id = pji->id;
51	g_print_priority = pji->priority;
52	g_print_size = pji->size;
53	strcpy(g_print_user,pji->user);
54	strcpy(g_print_name,pji->name);
55
56	/* fprintf(stdout, "Print job: ID: %u, Prio: %u, Size: %u, User: %s, Name: %s\n",
57			          pji->id, pji->priority, pji->size, pji->user, pji->name); */
58
59}
60
61int main(int argc, char** argv)
62{
63
64	int err = -1;
65	char url[MAX_BUFF_SIZE];
66
67	bzero(g_workgroup,MAX_BUFF_SIZE);
68	bzero(url,MAX_BUFF_SIZE);
69	bzero(g_print_user,MAX_BUFF_SIZE);
70	bzero(g_print_name,MAX_BUFF_SIZE);
71
72	g_print_id = 0;
73	g_print_priority = 0;
74	g_print_size = 0;
75	call_back_flag = 0;
76	print_queue_empty = 0;
77
78	if ( argc == 5 )
79	{
80
81		strncpy(g_workgroup,argv[1],strlen(argv[1]));
82		strncpy(g_username,argv[2],strlen(argv[2]));
83		strncpy(g_password,argv[3],strlen(argv[3]));
84		strncpy(url,argv[4],strlen(argv[4]));
85
86		smbc_init(auth_fn, 0);
87
88		while ( ! print_queue_empty ) /* Wait until the queue is empty */
89		{
90			sleep(1);
91			print_queue_empty = 1;
92	 		smbc_list_print_jobs(url,print_list_fn_2);
93		}
94
95	 	smbc_list_print_jobs(url,print_list_fn);
96
97		if ( call_back_flag )
98
99			err = 0;
100
101		else
102			err = 1;
103
104	}
105
106	return err;
107
108}
109
110