• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/testsuite/libsmbclient/src/lseek/
1#include <stdio.h>
2#include <stdlib.h>
3#include <string.h>
4#include <errno.h>
5#include <libsmbclient.h>
6
7#define	MAX_BUFF_SIZE	255
8char g_workgroup[MAX_BUFF_SIZE];
9char g_username[MAX_BUFF_SIZE];
10char g_password[MAX_BUFF_SIZE];
11char g_server[MAX_BUFF_SIZE];
12char g_share[MAX_BUFF_SIZE];
13
14
15void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen,
16		char *username, int unmaxlen, char *password, int pwmaxlen)
17{
18
19	strncpy(workgroup, g_workgroup, wgmaxlen - 1);
20
21	strncpy(username, g_username, unmaxlen - 1);
22
23	strncpy(password, g_password, pwmaxlen - 1);
24
25	strcpy(g_server, server);
26	strcpy(g_share, share);
27
28}
29
30int main(int argc, char** argv)
31{
32	int err = -1;
33	int fd = 0;
34
35	bzero(g_workgroup,MAX_BUFF_SIZE);
36
37	if ( argc == 4 )
38	{
39
40		strncpy(g_workgroup,argv[1],strlen(argv[1]));
41		strncpy(g_username,argv[2],strlen(argv[2]));
42		strncpy(g_password,argv[3],strlen(argv[3]));
43
44		smbc_init(auth_fn, 0);
45
46		fd = -1;
47		smbc_lseek(fd, 0, SEEK_SET);
48
49		err = errno;
50
51
52	}
53
54	return err;
55
56}
57
58