d5b66dfe6350f6e4f6eea4967c6cc125ced106c0
[sfrench/samba-autobuild/.git] / testsuite / libsmbclient / src / read / read_10.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 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         int msg_len = 0;
35         char url[MAX_BUFF_SIZE];
36         char* message = NULL;
37
38         bzero(g_workgroup,MAX_BUFF_SIZE);
39         bzero(url,MAX_BUFF_SIZE);
40
41         if ( argc == 5 )
42         {
43                 
44                 strncpy(g_workgroup,argv[1],strlen(argv[1]));
45                 strncpy(g_username,argv[2],strlen(argv[2]));
46                 strncpy(g_password,argv[3],strlen(argv[3]));
47                 strncpy(url,argv[4],strlen(argv[4]));
48
49                 smbc_init(auth_fn, 0);
50                 smbc_unlink(url);
51                 fd = smbc_open(url,O_RDWR | O_CREAT, 0666);
52                 smbc_close(fd);
53
54                 msg_len = 10;
55                 fd = smbc_open(url, O_RDWR, 0666);
56                 smbc_write(fd, message, msg_len);
57
58                 err = errno;
59
60                 smbc_close(fd);
61
62
63         }
64
65         return err;
66
67 }
68