~zulcss/samba/server-dailies-3.4

« back to all changes in this revision

Viewing changes to testsuite/libsmbclient/src/creat/creat_2.c

  • Committer: Chuck Short
  • Date: 2010-09-28 20:38:39 UTC
  • Revision ID: zulcss@ubuntu.com-20100928203839-pgjulytsi9ue63x1
Initial version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <stdio.h>
 
2
#include <string.h>
 
3
#include <errno.h>
 
4
#include <libsmbclient.h>
 
5
 
 
6
#define MAX_BUFF_SIZE   255
 
7
char g_workgroup[MAX_BUFF_SIZE];
 
8
char g_username[MAX_BUFF_SIZE];
 
9
char g_password[MAX_BUFF_SIZE];
 
10
char g_server[MAX_BUFF_SIZE];
 
11
char g_share[MAX_BUFF_SIZE];
 
12
 
 
13
 
 
14
void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, 
 
15
                char *username, int unmaxlen, char *password, int pwmaxlen)
 
16
{
 
17
 
 
18
        strncpy(workgroup, g_workgroup, wgmaxlen - 1);
 
19
 
 
20
        strncpy(username, g_username, unmaxlen - 1);
 
21
 
 
22
        strncpy(password, g_password, pwmaxlen - 1);
 
23
 
 
24
        strcpy(g_server, server);
 
25
        strcpy(g_share, share);
 
26
 
 
27
}
 
28
 
 
29
int main(int argc, char** argv)
 
30
{
 
31
        int err = -1;
 
32
        int fd = 0; 
 
33
        char url[MAX_BUFF_SIZE];
 
34
 
 
35
        bzero(g_workgroup,MAX_BUFF_SIZE);
 
36
        bzero(url,MAX_BUFF_SIZE);
 
37
 
 
38
        if ( argc == 5 )
 
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
                strncpy(url,argv[4],strlen(argv[4]));
 
45
 
 
46
                smbc_init(auth_fn, 0);
 
47
                fd = smbc_open(url, O_RDWR | O_CREAT, 0666);
 
48
                smbc_close(fd);
 
49
                fd = 0;
 
50
                fd = smbc_creat(url, 0666);
 
51
 
 
52
                if ( fd < 0 )
 
53
                        err = 1;
 
54
 
 
55
                else
 
56
                        err = 0;
 
57
 
 
58
        }
 
59
 
 
60
        return err;
 
61
 
 
62
}
 
63