Samba 3: added Samba 3.0.24 sources
[tomato.git] / release / src / router / samba3 / testsuite / libsmbclient / src / lseekdir / lseekdir_3.c
blobede9cef0815f4146ff0385bdde6c3b3e02e412ac
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <errno.h>
5 #include <libsmbclient.h>
7 #define MAX_BUFF_SIZE 255
8 char g_workgroup[MAX_BUFF_SIZE];
9 char g_username[MAX_BUFF_SIZE];
10 char g_password[MAX_BUFF_SIZE];
11 char g_server[MAX_BUFF_SIZE];
12 char g_share[MAX_BUFF_SIZE];
15 void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen,
16 char *username, int unmaxlen, char *password, int pwmaxlen)
19 strncpy(workgroup, g_workgroup, wgmaxlen - 1);
21 strncpy(username, g_username, unmaxlen - 1);
23 strncpy(password, g_password, pwmaxlen - 1);
25 strcpy(g_server, server);
26 strcpy(g_share, share);
30 int main(int argc, char** argv)
32 int err = -1;
33 int dh = 0;
35 char url[MAX_BUFF_SIZE];
37 bzero(g_workgroup,MAX_BUFF_SIZE);
38 bzero(url,MAX_BUFF_SIZE);
40 if ( argc == 5 )
43 strncpy(g_workgroup,argv[1],strlen(argv[1]));
44 strncpy(g_username,argv[2],strlen(argv[2]));
45 strncpy(g_password,argv[3],strlen(argv[3]));
46 strncpy(url,argv[4],strlen(argv[4]));
48 smbc_init(auth_fn, 0);
50 dh = smbc_opendir(url);
51 /* printf("directory handle: %i\n",dh); */
52 err = smbc_lseekdir(dh,0);
53 /* printf("err: %i\n",err); */
55 if ( err < 0 )
57 err = 1;
59 else
60 err = 0;
64 return err;