repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
revert between 56095 -> 55830 in arch
[AROS.git]
/
workbench
/
network
/
smbfs
/
source_code
/
include
/
smb
/
smb_mount.h
blob
ff7d0155838c4ec2be6a28aa32e41558ab7153b8
1
/*
2
* $Id$
3
*
4
* :ts=4
5
*
6
* smb_mount.h
7
*
8
* Copyright (C) 1995 by Paal-Kr. Engstad and Volker Lendecke
9
* Modified for use with AmigaOS by Olaf Barthel <obarthel -at- gmx -dot- net>
10
*/
11
12
#ifndef _SMB_MOUNT_H
13
#define _SMB_MOUNT_H
14
15
#include <netinet/in.h>
16
17
struct
smb_mount_data
18
{
19
int
fd
;
20
21
struct
sockaddr_in addr
;
22
23
char
workgroup_name
[
17
];
24
char
server_name
[
17
];
25
char
client_name
[
17
];
26
char
service
[
64
];
27
28
char
username
[
64
];
29
char
password
[
64
];
30
31
int
given_max_xmit
;
32
};
33
34
#endif