s3-libsmbclient: make some functions static in testsuite code.
[samba.git] / testsuite / libsmbclient / src / read / read_8.c
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
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];
13
14
15 static void 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
30 int main(int argc, char** argv)
31 {
32         int err = -1;
33         int fd = 0;
34         char* message = "Testing";
35
36         bzero(g_workgroup,MAX_BUFF_SIZE);
37
38         if ( argc == 4 )
39         {
40                 
41                 strncpy(g_workgroup,argv[1],strlen(argv[1]));
42                 strncpy(g_username,argv[2],strlen(argv[2]));
43                 strncpy(g_password,argv[3],strlen(argv[3]));
44
45                 fd = 10345; /* Random value for File Descriptor */
46                 smbc_init(auth_fn, 0);
47                 err = smbc_read(fd, message, sizeof(message));
48
49                 err = errno;
50
51         }
52
53         return err;
54
55 }
56