Corrections to SVN properties.
[AROS.git] / workbench / network / smbfs / source_code / include / smb / smb_mount.h
blob9f589551418855aaf7b2a7ff000704407fdf2bb1
1 /*
2 * $Id$
4 * :ts=8
6 * smb_mount.h
8 * Copyright (C) 1995 by Paal-Kr. Engstad and Volker Lendecke
9 * Modified for use with AmigaOS by Olaf Barthel <olsen@sourcery.han.de>
12 #ifndef _SMB_MOUNT_H
13 #define _SMB_MOUNT_H
15 #include <netinet/in.h>
17 struct smb_mount_data
19 int fd;
21 struct sockaddr_in addr;
23 char workgroup_name[17];
24 char server_name[17];
25 char client_name[17];
26 char service[64];
28 char username[64];
29 char password[64];
31 unsigned short max_xmit;
34 #endif