~vcs-imports/samba/main

« back to all changes in this revision

Viewing changes to testsuite/libsmbclient/src/read/read_7.c

  • Committer: jerry
  • Date: 2006-07-14 21:48:39 UTC
  • Revision ID: vcs-imports@canonical.com-20060714214839-586d8c489a8fcead
gutting trunk to move to svn:externals

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
        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
 
                if ( err < 0 )
50
 
                        err = 1;
51
 
 
52
 
                else
53
 
                        err = 0;
54
 
 
55
 
        }
56
 
 
57
 
        return err;
58
 
 
59
 
}
60