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.
This commit is contained in:
obarthel
2018-05-11 11:07:04 +02:00
parent 7eaa926667
commit d2a15bd63e
14 changed files with 439 additions and 187 deletions
Regular → Executable
View File
+3
View File
@@ -62,6 +62,9 @@ struct smb_server
/* olsen (2018-05-08): Always use SMB_COM_READ, even if SMB_COM_READ_RAW were possible. */
int disable_read_raw;
/* olsen (2018-05-09): Timeout for send/receive operations in seconds. */
int timeout;
};
#define NEGOTIATE_USER_SECURITY 0x01 /* If set, the server supports
+9 -9
View File
@@ -14,19 +14,19 @@
struct smb_mount_data
{
int fd;
int fd;
struct sockaddr_in addr;
struct sockaddr_in addr;
char workgroup_name[17];
char server_name[17];
char client_name[17];
char service[64];
char workgroup_name[17];
char server_name[17];
char client_name[17];
char service[64];
char username[64];
char password[64];
char username[64];
char password[64];
int given_max_xmit;
int given_max_xmit;
};
#endif
Regular → Executable
View File