Files
amiga-smbfs/source_code/include/smb/smb_mount.h
T
obarthel d2a15bd63e Updated to version 1.128
Please keep in mind that this is still a development version and might surprise you (not necessarily in a good way).

Do not let me discourage you to build and test this version, although there will be some risks involved such as data corruption or loss of data.
2018-05-11 11:07:04 +02:00

33 lines
499 B
C

/*
* :ts=4
*
* smb_mount.h
*
* Copyright (C) 1995 by Paal-Kr. Engstad and Volker Lendecke
* Modified for use with AmigaOS by Olaf Barthel <obarthel -at- gmx -dot- net>
*/
#ifndef _SMB_MOUNT_H
#define _SMB_MOUNT_H
#include <netinet/in.h>
struct smb_mount_data
{
int fd;
struct sockaddr_in addr;
char workgroup_name[17];
char server_name[17];
char client_name[17];
char service[64];
char username[64];
char password[64];
int given_max_xmit;
};
#endif